Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有代码仅使用模块时间(在python中)确定与时间零相对应的日期和时间?
import time x = time.time() print(x)
来自文档:
当年 1 月 1 日,0 时,“自纪元以来的时间”为零。对于 Unix,纪元是 1970。要找出纪元是什么,请查看gmtime(0)
gmtime(0)
“时间 0”通常是UNIX 纪元。
从time模块文档:
time
纪元是时间开始的点。当年 1 月 1 日,0 时,“自纪元以来的时间”为零。对于 Unix,纪元是 1970。要找出纪元是什么,请查看 gmtime(0)。
>>> import time >>> time.gmtime(0) time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=1, tm_isdst=0)