到目前为止,我有:
>>> 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'
到目前为止,我有:
>>> 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'