3
>>> import time
>>> time.strptime("01-31-2009", "%m-%d-%Y")
(2009, 1, 31, 0, 0, 0, 5, 31, -1)
>>> time.mktime((2009, 1, 31, 0, 0, 0, 5, 31, -1))
1233378000.0
>>> 60*60*24 # seconds in a day
86400
>>> 1233378000.0 / 86400
14275.208333333334

time.mktime应该返回自纪元以来的秒数。既然我在午夜给它一个时间并且时代是在午夜,那么结果不应该被一天中的秒数整除吗?

4

4 回答 4

7

简短的回答:因为时区。

时代是UTC。

例如,我使用的是 IST(爱尔兰标准时间)或 UTC+1。time.mktime()相对于我的时区,所以在我的系统上,这是指

>>> time.mktime((2009, 1, 31, 0, 0, 0, 5, 31, -1))
1233360000.0

因为你得到的结果是 1233378000,这表明你比我晚了 5 个小时

>>> (1233378000 - 1233360000) / (60*60)    
5

查看time.gmtime()适用于 UTC 的函数。

于 2008-08-22T09:24:25.770 回答
3
mktime(...)
    mktime(tuple) -> floating point number

    Convert a time tuple in local time to seconds since the Epoch.

当地时间...看中那个。

时间元组:

The other representation is a tuple of 9 integers giving local time.
The tuple items are:
  year (four digits, e.g. 1998)
  month (1-12)
  day (1-31)
  hours (0-23)
  minutes (0-59)
  seconds (0-59)
  weekday (0-6, Monday is 0)
  Julian day (day in the year, 1-366)
  DST (Daylight Savings Time) flag (-1, 0 or 1)
If the DST flag is 0, the time is given in the regular time zone;
if it is 1, the time is given in the DST time zone;
if it is -1, mktime() should guess based on the date and time.

顺便说一句,我们似乎相隔 6 小时:

>>> time.mktime((2009, 1, 31, 0, 0, 0, 5, 31, -1))
1233356400.0
>>> (1233378000.0 - 1233356400)/(60*60)
6.0
于 2008-08-22T09:21:55.697 回答
2

菲尔的回答确实解决了它,但我会详细说明。由于纪元是 UTC,如果我想将其他时间与纪元进行比较,我也需要将它们解释为 UTC。

>>> calendar.timegm((2009, 1, 31, 0, 0, 0, 5, 31, -1))
1233360000
>>> 1233360000 / (60*60*24)
14275

通过将时间元组转换为时间戳,将其视为 UTC 时间,我得到一个可以一天中的秒数整除的数字。

我可以使用它来将日期转换为从时代开始的天数表示,这是我最终想要的。

于 2008-08-22T10:12:25.140 回答
0

有趣的。我不知道,但我确实尝试过这个:

>>> now = time.mktime((2008, 8, 22, 11 ,17, -1, -1, -1, -1))
>>> tomorrow = time.mktime((2008, 8, 23, 11 ,17, -1, -1, -1, -1))
>>> tomorrow - now
86400.0

这是你所期望的。我猜?也许自那个时代以来进行了一些时间修正。这可能只有几秒钟,就像闰年一样。我想我以前听过类似的东西,但不记得具体是如何以及何时完成的......

于 2008-08-22T09:22:08.317 回答