Python教程

python的时间获取与转化:time模块和datetime模块

本文主要是介绍python的时间获取与转化:time模块和datetime模块,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.三种时间:UTC time,local time,epoch time
2.三种时间表示:timestamp,struct_time,format time


3.time.time()返回时间戳;time.localtime()返回时间元组;time.strftime('%Y-%m-%d' , time.localtime())返回格式化时间
time.strptime('2018年12月08日 34时10分04秒' , '%Y年%m月%d日 %M时%I分%S秒') 解析字符串返回时间元组

4.datetime模块是对time的进一步封装,主要是5个类:date,time,datetime,timedelta,tzinfo。


5.date.today(),date.fromtimestamp(timestamp),d.weekday(),d.strftime(format)
6.datetime.today(),datetime.now([tz])
7.timedelta内部值存储days,seconds,microseconds.其他所有值都被转为这三个参数。
8.td.days(),td.seconds()

这篇关于python的时间获取与转化:time模块和datetime模块的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!