python中time模块中struct_time()的作用?所需参数?简单案例?
时间: 2024-05-12 13:18:10 浏览: 149
Python中常用的Python time模块常用函数
5星 · 资源好评率100%
struct_time() 是 time 模块中的一个函数,它的作用是将时间戳转换为 struct_time 对象(即 struct_time 结构体)。该函数需要一个浮点型时间戳作为参数,返回对应的 struct_time 对象,该对象包含有关时间的多个字段,如年、月、日等。下面是一个简单案例:
```
import time
# 获取当前时间的时间戳
timestamp = time.time()
# 将时间戳转换为 struct_time 对象
struct_time = time.localtime(timestamp)
# 输出 struct_time 对象
print(struct_time)
```
以上代码中,使用 time.time() 获取了当前时间的时间戳,并将其作为参数传递给 time.localtime() 函数,返回对应的 struct_time 对象。输出该对象可以看到,它包含了多个字段,如 tm_year、tm_mon、tm_mday 等,分别表示年、月、日等时间信息。
阅读全文