gpt4 book ai didi

python时间模块: daylight savings

转载 作者:行者123 更新时间:2023-12-01 05:23:06 25 4
gpt4 key购买 nike

我有一个关于 python 的问题 time具体模块(询问 datetimepytz 或任何其他模块)。

如何使用 time 找到答案模块,我当前所在的地点和日期当前是否是夏令时 (DST)?

The documentation在这个话题上似乎很模糊。我本以为time.daylight如果当前是标准时间(冬季),则为 0;如果当前为夏令时(夏季),则为非零,根据我对文档字符串措辞方式的解释:Nonzero if a DST timezone is defined.

不过,好像这并不是time.daylight做!目前这里是冬季(标准)时间,但是 time.daylight == 1

如何使用 time模块来查明当前是否为 DST?或者这是不可能的?谢谢!

最佳答案

How can I find out, using the time module, whether it is currently daylight savings time (DST) in the place and date where I currently am?

假设您的计算机设置为正确的时区:

import time

is_dst = time.daylight and time.localtime().tm_isdst > 0

关于python时间模块: daylight savings,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21949426/

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