我經常出差,但住在紐約市,我試圖展示紐約時間,無論我在哪裏。我如何在Python中做到這一點?我有以下,這是不行的,給我的錯誤:我如何獲得紐約市時間?
`'module' object is not callable`
而且,我不知道如果我下面的方法將正確日光節約時間或不更新:
import pytz
utc = pytz.utc
utc_dt = datetime(2002, 10, 27, 6, 0, 0, tzinfo=utc)
eastern = pytz.timezone('US/Eastern')
loc_dt = utc_dt.astimezone(eastern)
fmt = '%Y-%m-%d %H:%M:%S %Z%z'
loc_dt.strftime(fmt)
THX!我仍然是一個新手。 – 2012-08-08 21:57:49