时间样式

时间戳
timestamp ,从1970年开始的总毫秒数
时间格式化符号
%a,等
struct_time元组
有9个元素,年月日时分秒,周天等

time模块

time函数
time()函数 返回当前时间戳
localtime([secs]) 函数
格式化时间戳为 本地时间 secs表示转化为 struct_time对象
mktime(t)
struct_time 转化为 时间戳
sleep() 函数
指定进程挂起的时间
clock() 函数
返回当前CPU时间,衡量不同程序的耗时
strftime(formate[,t])
返回指定格式的时间
strptime
解析指定格式的时间

datetime模块

date类
表示日期, year month day
time类
表示时间, hour,minute,second,microsecond
datetime类
表示日期时间
datetime()函数
返回当前本地时间的datetime对象,打印为 2018-03-11 16:54:20
now()函数
获取本地时间
fromtimestamp()
根据时间戳返回 timestamp对象
datedelta类
表示时间间隔

日历模块