本文介绍了在python中解析CEST / CET时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有这些日期字符串:
Fri Oct 7 16:00:09 CEST 2011
我想将它们转换为UTC。我试过这个实现:
I want to convert them to UTC. I have tried with this implementation:
def LocalToUtc(localtime):
return datetime.strptime(localtime, "%a %m %d %H:%M:%S %Z %Y").isoformat() + 'Z'
但是我得到一个 ValueError
:
ValueError: time data 'Fri Oct 7 16:00:09 CEST 2011' does not match format '%a %m %d %H:%M:%S %Z %Y'
任何想法?
推荐答案
使用库。
这篇关于在python中解析CEST / CET时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!