📅  最后修改于: 2023-12-03 15:04:23.519000             🧑  作者: Mango
在Python中,我们可以使用time模块中的asctime()方法来获取当前时间的可读字符串表示形式。
time.asctime([tupletime])
asctiem()方法返回一个可读的字符串表示形式,其格式为“Day Month Date HH:MM:SS Year”。
import time
localtime = time.localtime(time.time())
asctime = time.asctime(localtime)
print("本地时间为:", asctime)
输出结果为:
本地时间为: Thu Jul 29 13:48:24 2021
(year, month, day, hour, minute, second, week_of_year, day_of_week, daylight_savings)
。但前面三个元素又可以使用 time.struct_time
替换,其具有更多的属性。ValueError
异常将被引发。