I'm having some troubles with Datetime formats. My database comes with this datetime format:
"2020-11-01T03:17:54Z"
Thing is that I just can't find the format that fits this string in order for me to convert it to a datetime object. I've gone all over the documentation but I just can´t find how to write the "T" or what the "Z" means.
Thanks in advance!
The date is in ISO 8601 format. If you try:
you will see that this format includes the info "tz='UTC'":
You can remove it (but keep that the date is in UTC) as follows:
The result will be the timestamp: