df['Datetime'] = pd.to_datetime(df['Gmt time'], dayfirst=True)
Results in beautiful
2019-04-01 00:00:00
Instead of
2019-01-04 00:00:00
Who’d want to format date like this… 😕
df['Datetime'] = pd.to_datetime(df['Gmt time'], dayfirst=True)
Results in beautiful
2019-04-01 00:00:00
Instead of
2019-01-04 00:00:00
Who’d want to format date like this… 😕