PIbd-42_SSPR/db/csv_to_db.py

11 lines
203 B
Python
Raw Normal View History

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