# import time
# time() -- 从1971年一月一日00:00:00开始计时到现在的时间单位是秒
# clock() -- return CPU time since process start as a float
# sleep(s) -- 等待s秒
# gmtime() --英国时间根据时区 北京为东八区英国为中心返回的是一个tupl
# localtime() -- 北京时间返回的是一个tuple
# asctime() -- 把一个tuple转换为string
print(time.asctime(time.localtime()))
#结果Wed Oct 10 21:21:18 2018
View Code
# ctime() -- 把一个秒转换为string
print(time.ctime(360))
#结果Thu Jan 1 08:06:00 1970
View Code
# mktime() -- 把当地时间转换为秒
print(time.mktime(time.localtime()))
#结果1539177856.0
View Code
# strftime() -- 根据格式对tuple转换为string
print(time.strftime('%Y**%m**%d %H:%M:%S',time.localtime()))
#结果2018**10**10 21:25:24
View Code
# strptime() -- 把string转换为tuple根据一定格式可以自定义格式
a = time.strptime('2018**09**28 19:52:15','%Y**%m**%d %H:%M:%S')
print(a.tm_sec)# 取出a中的数据
print(a)
# tzset() -- change the local timezone