标签:nbsp 第几天 bsp strftime 1.5 asc lin cal str
import time
#时间戳
time.time() #浮点型Unix秒数,浮点长度6位。
#结构化时间(当地),结构化时间是一对象
t = time.localtime()
t.tm_year #返回年份
t.tm_wday #返回本周第几天(周几)
#结构化时间(格林威治)
t = time.gmtime()
#结构化时间转时间戳
time.mktime(time.localtime())
#结构化时间转换成字符串时间
time.strftime("%Y-%m-%d %X",time.localtime()) # %X=%H%M%S
#字符串时间转化为结构化时间
#time.strptime(“2016:12:12:17:50:36”,"%Y:%m%d:%X")
#返回当前时间
time.asctime()
time.ctime() #返回结果同上
sleep(sec) #线程推迟运行秒数
import datetime
datetime.datetime.now()
标签:nbsp 第几天 bsp strftime 1.5 asc lin cal str
原文地址:https://www.cnblogs.com/benchdog/p/9043084.html