I am using parse_date argument while loading the data, but then when I check the type of columns, it still shows as string only. What could be the reason? dates_df=pd.read_csv("/kaggle/input/lesson-16-dates/dates_lesson_16.csv",parse_dates=[0,1,2,3]) for i in dates_df: print(type(i)) Output:
Pure genius - great explanation and under 12 minutes too! Thank you
How do I download the csv files for the lessons?
I am using parse_date argument while loading the data, but then when I check the type of columns, it still shows as string only. What could be the reason?
dates_df=pd.read_csv("/kaggle/input/lesson-16-dates/dates_lesson_16.csv",parse_dates=[0,1,2,3])
for i in dates_df:
print(type(i))
Output:
thank you
Thxx alot