2024-10-14 16:57:57 +04:00
|
|
|
import pandas as pd
|
|
|
|
|
|
|
|
|
2024-10-14 19:49:54 +04:00
|
|
|
df = pd.read_csv('./files/recycling_parameters.csv')
|
2024-10-14 16:57:57 +04:00
|
|
|
headers = df.columns.tolist()
|
|
|
|
print(headers)
|
|
|
|
|
|
|
|
for header in headers:
|
|
|
|
column_type = df[header].dtype
|
|
|
|
print(column_type)
|