如何获取城市的当前时间

时间:2019-08-15 22:46:28

标签: python datetime

我有问题。我想创建一个脚本,该脚本可以为您提供您作为变量(字符串)给出的城市的当前时间。我在想这样的事情:

from datetime import datetime
import pytz

location = "New York"
timezone = pytz.timezone(location) 
time = datetime.now(timezone )
print("The time in" + location + " is now: " + time .strftime("%H:%M"))

但这给了我以下错误:

  

pytz.exceptions.UnknownTimeZoneError:'纽约'

现在我知道问题出在哪里,但我不知道如何解决。我希望它能与您给他的每个城市一起工作!

有人可以帮我吗?

0 个答案:

没有答案