gpt4 book ai didi

python - 在 Python 中,如何以可读格式显示当前时间

转载 作者:IT老高 更新时间:2023-10-28 21:11:23 29 4
gpt4 key购买 nike

如何将当前时间显示为:

12:18PM EST on Oct 18, 2010

在 Python 中。谢谢。

最佳答案

首先是快速而肮脏的方式,其次是精确的方式(是否识别夏令时)。

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'

关于python - 在 Python 中,如何以可读格式显示当前时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3961581/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com