编程语言
首页 > 编程语言> > Python datetime模块简单记录

Python datetime模块简单记录

作者:互联网

Python Datetime 是 python 中处理时间常用的方式, 因为场景都在国内,所以没有记录有关时区操作

初始化对应字母

string -----> datetime: datetime.datetime.strptime() , datetime ------> string: datetime.datetime.strftime()

datetime 两个主要应用类

class datetime.datetime 得到时间信息,包括年月日时分秒

A combination of a date and a time. Attributes: year, month, day, hour, minute, second, microsecond, and tzinfo.

class datetime.timedelta 得到时间之间的差信息

A duration expressing the difference between two date, time, or datetime instances to microsecond resolution.

简单应用

datetime
得到其中任意一个值
timedelta

delta = timedelta(
… days=50,
… seconds=27,
… microseconds=10,
… milliseconds=29000,
… minutes=5,
… hours=8,
… weeks=2
… )

两个日期之间的天数

同类型可以进行加减,两个 datetime 类型数据进行加减即可:

标签:20,timedelta,Python,datetime,2020,模块,year,day
来源: https://blog.csdn.net/weixin_46546516/article/details/110648799