Python之路----------time模块

时间模块是常用的模块

一、time模块

 import time

 print(time.clock())#返回处理器时间,3.3开始已经屏蔽。

 print(time.altzone)#返回与UTC时间差,以秒计算

 print(time.asctime())#返回时间格式"Sun Jan  1 14:31:34 2017"

 print(time.localtime())#返回本地时间的struct time对象格式

 print(time.localtime(time.time()+3600*3))#本地时间加3小时的struct time对象格式

 print(time.gmtime(time.time()-36000))#返回utc时间的struc时间格式

 print(time.time())#获取时间戳,1970年1月1日以秒计算,1970年是unix诞生元年

 print(time.ctime())#"Sun Jan  1 14:48:22 2017"

二、datetime模块

 import datetime

 print("datetime".center(60,"-"))
print(datetime.datetime.now())#当前时间
print(datetime.datetime.now() + datetime.timedelta(days=3))#当前时间+3天
print(datetime.datetime.now() + datetime.timedelta(hours=3))#当前时间+3小时 now = datetime.datetime.now()
print(now.replace(month=1, day=4))#时间替换
上一篇:分享一个解决MySQL写入中文乱码的方法


下一篇:SpringBoot入门篇--整合mybatis+generator自动生成代码+druid连接池+PageHelper分页插件