28

我正在尝试将时区感知datetime对象转换为 UTC,然后返回到它的原始时区。我有以下片段

t = datetime(
    2013, 11, 22, hour=11, minute=0,
    tzinfo=pytz.timezone('Europe/Warsaw')
)

现在在 ipython 中:

In [18]: t
Out[18]: datetime.datetime(
    2013, 11, 22, 11, 0, tzinfo=<DstTzInfo 'Europe/Warsaw' WMT+1:24:00 STD>
)

现在让我们尝试转换为 UTC 并返回。我希望具有与以下相同的表示:

In [19]: t.astimezone(pytz.utc).astimezone(pytz.timezone('Europe/Warsaw'))
Out[19]: datetime.datetime(
    2013, 11, 22, 10, 36, tzinfo=<DstTzInfo 'Europe/Warsaw' CET+1:00:00 STD>
)

然而,我们看到了这一点Out[18]并且Out[19]有所不同。这是怎么回事?

4

1 回答 1

63

文档http://pytz.sourceforge.net/指出“不幸的是,对于许多时区,使用标准日期时间构造函数的 tzinfo 参数对 pytz '不起作用'。” 编码:

t = datetime(
    2013, 5, 11, hour=11, minute=0,
    tzinfo=pytz.timezone('Europe/Warsaw')
)

根据这个不起作用,您应该使用 localize 方法:

t = pytz.timezone('Europe/Warsaw').localize(
        datetime(2013, 5, 11, hour=11, minute=0))
于 2013-08-30T20:55:07.933 回答