如何在GMT获得时间?

时间:2013-09-10 20:04:57

标签: python time timezone localtime abbreviation

到目前为止,我有:

>>> import time
>>> time.strftime("%a, %d %b %Y %H:%M:%S %Z", time.localtime())
'Tue, 10 Sep 2013 22:55:08 Mitteleurop\xe4ische Sommerzeit'

但我需要的是:

'Tue, 10 Sep 2013 22:55:08 GMT'

1 个答案:

答案 0 :(得分:1)

>>> import time
>>> time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
'Tue, 10 Sep 2013 20:08:51 GMT