Reputation: 125
I would like to convert the following time format to a valid date time format for my graphs.
2020-05-06T08:49:23.004+10:00
So far I've been removing the +10:00 in order to make it work.
Upvotes: 0
Views: 62
Reputation: 1920
Have you tried pandas.to_datetime(time)
, where time = 2020-05-06T08:49:23.004+10:00
?
Upvotes: 1