当前位置:  开发笔记 > 编程语言 > 正文

是否有time.gmtime()的反函数将UTC元组解析为自纪元以来的秒数?

如何解决《是否有time.gmtime()的反函数将UTC元组解析为自纪元以来的秒数?》经验,为你挑选了1个好方法。

python的时间模块似乎有点杂乱无章.例如,以下是docstring中的方法列表:

time() -- return current time in seconds since the Epoch as a float
clock() -- return CPU time since process start as a float
sleep() -- delay for a number of seconds given as a float
gmtime() -- convert seconds since Epoch to UTC tuple
localtime() -- convert seconds since Epoch to local time tuple
asctime() -- convert time tuple to string
ctime() -- convert time in seconds to string
mktime() -- convert local time tuple to seconds since Epoch
strftime() -- convert time tuple to string according to format specification
strptime() -- parse string to time tuple according to format specification
tzset() -- change the local timezone

查看localtime()及其反mktime(),为什么gmtime()没有反转?

奖金问题:你怎么称呼这个方法?你会如何实现它?



1> Tom..:

实际上有一个反函数,但由于一些奇怪的原因,它在日历模块中:calendar.timegm().我列出了这个答案中的功能.


calendar.timegm(datetime.datetime.utcnow().utctimetuple())是获取UTC时间戳的一个班轮.
推荐阅读
低调pasta_730
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有