关于python:确定自纪元以来秒数的方法?

Way to determine the number of seconds since the epoch?

本问题已经有最佳答案,请猛点这里访问。

在Python中获取time.now()的最简单方法是:

1
time.now() = seconds since epoch GMT at the time time.now() is called

似乎有关于如何从struct_time转换为秒的相当多的信息,但我希望有一个内置函数,它只能返回自格元GMT以来的秒数。


挖了一会儿..我希望有人有更好的东西,但这是我的解决方案:

1
calendar.timegm(time.gmtime())