Python time.localtime() 方法
Python time.localtime() 函数类似 time.gmtime(),用于格式化时间戳为本地的时间
导入模块
import time
time.localtime() 语法
time.localtime([ sec ])
参数
参数 | 说明 |
---|---|
sec | 可选,一个浮点数格式的时间戳,如果忽略,则以当前时间为转换标准 |
返回值
返回 time.struct_time 格式的 9 元素元组日期时间格式
范例
>>> import time >>> print ( time.localtime()) time.struct_time(tm_year=2018, tm_mon=1, tm_mday=16, tm_hour=14, tm_min=28, tm_sec=30, tm_wday=1, tm_yday=16, tm_isdst=0) >>>