我经常旅行,但住在纽约市,无论我身在何处,我都试图显示纽约市的时间。我如何在 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)