Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
454 views
in Technique[技术] by (71.8m points)

python - Using strptime to get UTC offset with separation between hours and minutes

I have a string like this 2018-04-03 02:59:59+00:00 and I need to use strptime to convert it to datetime.

However, looking at the docs, the %z (UTC offset) directive is +HHMM, but I need +HH:MM. How can I achieve that?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

It is not currently possible using datetime.strptime, because of the colon character in the offset. So, forget strptime and choose one of the options below:

  • Pre-process the string to remove the colon from the offset
  • Use a dateutil.parser instead of strptime
  • Upgrade to Python 3.7

Regarding the last option: there's a new feature provided in 3.7, added specifically to address the issue you're seeing. It's a new datetime method, which can correctly parse your string:

# Python 3.7.0b1
>>> from datetime import datetime
>>> datetime.fromisoformat('2018-04-03 02:59:59+00:00')
datetime.datetime(2018, 4, 3, 2, 59, 59, tzinfo=datetime.timezone.utc)

Additionally, Python 3.7 supports colons in the offset for %z if you wanted to stick with strptime.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...