python 用time模块把指定的时间戳转换成时间
时间: 2024-03-26 22:39:03 浏览: 99
python实现时间戳转换工具
使用 Python 中的 time 模块也可以将时间戳转换为时间。以下是一个示例代码:
```python
import time
timestamp = 1609459200 # 时间戳,表示 2021-01-01 00:00:00
# 使用 localtime 方法将时间戳转换为 struct_time 对象
time_object = time.localtime(timestamp)
# 使用 strftime 方法将 struct_time 对象转换为指定格式的字符串
formatted_time = time.strftime("%Y-%m-%d %H:%M:%S", time_object)
print(formatted_time) # 输出:2021-01-01 00:00:00
```
在上面的代码中,我们首先导入了 time 模块。然后,我们定义了一个时间戳变量 timestamp,它表示 2021 年 1 月 1 日 0 点 0 分 0 秒。接下来,我们使用 localtime 方法将时间戳转换为 struct_time 对象 time_object。最后,我们使用 strftime 方法将 struct_time 对象转换为指定格式的字符串 formatted_time。
阅读全文