creating a timezone aware datetime object returns a wrong timezone

前端 未结 2 1803
-上瘾入骨i
-上瘾入骨i 2021-01-23 12:11

when I create a timezone aware datetime object for \'US/Eastern\' and print it out, It shows as if my time zone is -4:56 instead of -4:00<

2条回答
  •  北海茫月
    2021-01-23 12:22

    It is mentioned in the docs that constructing datetime objects doesn't work this way.

    You are supposed to do this:

    from datetime import datetime
    
    from pytz import timezone
    
    eastern = timezone('US/Eastern')
    obj = eastern.localize(datetime(2020, 7, 1, 9, 30))
    
    >>> obj
    datetime.datetime(2020, 7, 1, 9, 30, tzinfo=)
    >>> print(obj)
    2020-07-01 09:30:00-04:00
    

提交回复
热议问题