在本文中,您将学习获取语言环境的当前时间以及Python中的不同时区。
您可以采用多种方法获取Python当前时间。
from datetime import datetime now = datetime.now() current_time = now.strftime("%H:%M:%S") print("当前时间 =", current_time)
在上面的示例中,我们从datetime模块导入了datetime类。然后,我们使用now()方法来获取datetime包含当前日期和时间的对象。
然后使用datetime.strftime()方法创建一个表示当前时间的字符串。
如果您需要创建一个包含当前时间的time对象,则可以执行以下操作。
from datetime import datetime now = datetime.now().time() # time object print("now =", now) print("type(now) =", type(now))
您还可以使用时间模块获取当前时间。
import time t = time.localtime() current_time = time.strftime("%H:%M:%S", t) print(current_time)
如果需要查找某个时区的当前时间,可以使用pytZ模块。
from datetime import datetime import pytz tz_NY = pytz.timezone('America/New_York') datetime_NY = datetime.now(tz_NY) print("纽约时间:", datetime_NY.strftime("%H:%M:%S")) tz_London = pytz.timezone('Europe/London') datetime_London = datetime.now(tz_London) print("伦敦时间:", datetime_London.strftime("%H:%M:%S"))