IT博客汇
首页
精华
技术
设计
资讯
扯淡
权利声明
登录
注册
【Python】Python中的时间处理
cgl1079743846
发表于
2019-05-31 16:05:03
love
0
一. datetime Python中处理时间最重要的一个Module就是datetime 引用:import datetime 常用的类: datetime.date: 代表日期(year, month, day) datetime.time: 代表一天内时间(hour, minute, second, microsecond) datetime.datetime: 代表完整的时间,也就是上面...