Python datetime&time

Posted A running snail,little step ev

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python datetime&time相关的知识,希望对你有一定的参考价值。

datetime.datetime.now()获取当前日期和时间

datetime.datetime(2019,9,30,22,22,0) 构造日期和时间函数

fromtimestamp() 可以将时间戳转换成 datetime 对象

strptime()和strftime()函数 strptime()函数可以将日期字符串转换成 datetime 类型,strftime()函数可以将 datetime 类型转换成字符串。

timedelta()返回一个 timedelta 类型的数据,它表示一段时间而不是一个时刻,多用于日期的增加和减少场景

time模块

time.time()  函数返回的值是带小数点的,它表示从 Unix 纪元(1970年1月1日0点)到执行代码那一刻所经历的时间的秒数,这个数字称为UNIX纪元时间戳。

time.sleep() 函数。sleep()函数有个参数,表示需要暂停的秒数。

以上是关于Python datetime&time的主要内容,如果未能解决你的问题,请参考以下文章

Python datetime&time

Python时间模块time&datetime

python常用模块之time&datetime模块

Python常用模块——time&datetime模块

Python模块--time&datetime

time & datetime 模块