Python中的日期和时间

2024-11-05 06:29:21

Python中提供了一个time和calendar模块用于格式化日鲋逐噗瘀期和时间。时间戳是以秒为单位的浮点数。

Python中的日期和时间

工具/原料

电脑

python

日期和时间

1、python中可以用函数time.time()来获取当前的时间戳。

Python中的日期和时间Python中的日期和时间

2、Python函数一般用一个元组即struct_time元组来处理时间,struct_time元组包含9组数字,如下图。

Python中的日期和时间

3、struct_time元组具有如下属性:

Python中的日期和时间

4、从时间戳向时间元组转换可以用localtime函数。

Python中的日期和时间Python中的日期和时间

5、asctime()函数可以将时间元组转换为可读的时间模式。

Python中的日期和时间Python中的日期和时间
猜你喜欢