import time time.sleep(5) #休眠 time.time() #返回系统时间戳 utc时间秒数 time.ctime() #返回字符串时间格式,也可以传入参数转换为字符串时间time.ctime(time.time()) time.gmtime() #返回时间结构体,包含年月日时分秒等成员, #如time.struct_time(tm_year=2017, tm_mon=6, tm_mday=12, tm_hour=7, tm_min=34, tm_sec=43...) t…