问题:在Python中,如何以可读格式显示当前时间
如何将当前时间显示为:
12:18PM EST on Oct 18, 2010
在Python中 谢谢。
回答 0
首先是快速而肮脏的方法,其次是精确的方法(识别日光的节省与否)。
import time
time.ctime() # 'Mon Oct 18 13:35:29 2010'
time.strftime('%l:%M%p %Z on %b %d, %Y') # ' 1:36PM EDT on Oct 18, 2010'
time.strftime('%l:%M%p %z on %b %d, %Y') # ' 1:36PM EST on Oct 18, 2010'
回答 1
您所需要的只是文档中。
import time
time.strftime('%X %x %Z')
'16:08:12 05/08/03 AEST'
回答 2
您可以执行以下操作:
>>> from time import gmtime, strftime
>>> strftime("%a, %d %b %Y %H:%M:%S +0000", gmtime())
'Thu, 28 Jun 2001 14:17:15 +0000'
有关%代码的完整文档位于http://docs.python.org/library/time.html
回答 3
import time
time.strftime('%H:%M%p %Z on %b %d, %Y')
这可能会派上用场:http : //strftime.org/
回答 4
通过使用此代码,您将获得实时时区。
import datetime
now = datetime.datetime.now()
print ("Current date and time : ")
print (now.strftime("%Y-%m-%d %H:%M:%S"))
回答 5
看一下http://docs.python.org/library/time.html提供的功能
您在那里有几个转换功能。
编辑:请参阅datetime
(http://docs.python.org/library/datetime.html#module-datetime),以获得更多类似OOP的解决方案。time
上面链接的库有点必要。