gpt4 book ai didi

python - 如何获取特定时区的当前时间?

转载 作者:行者123 更新时间:2023-12-01 01:21:49 30 4
gpt4 key购买 nike

我正在使用日期时间模块来获取当前时间:

 datetime.now().strftime('%I:%M:%S %p')

这给了我当前时间,但采用 UTC 时间。如何获取当前 CST 时间?我可以在不使用其他外部库的情况下做到这一点吗?还是使用其他库更容易?

感谢任何帮助!

最佳答案

如果没有外部库,这可能会很棘手,所以我建议您使用 pytz

pip install pytz

并在 here 的帮助下你可以尝试下面的方法

from datetime import datetime
from pytz import timezone

now_time = datetime.now(timezone('America/Chicago'))
print(now_time.strftime('%I:%M:%S %p'))

我使用了America/Chicago,因为根据 this 它位于 CDT 时区.

但是如果您有兴趣在本地进行此操作,则必须阅读更多内容 here在官方文档中,因为它提供了一些有关如何执行此操作的示例,但它会留下踢腿和尖叫声,尤其是如果您是初学者。

关于python - 如何获取特定时区的当前时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53747385/

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