python timestamp如何转化成datetime
时间: 2023-07-17 19:55:55 浏览: 88
python timestamp和datetime之间转换详解
Python中可以使用datetime模块中的fromtimestamp()方法将timestamp转换为datetime。
示例代码:
```python
import datetime
timestamp = 162753600 # 时间戳,单位为秒
dt = datetime.datetime.fromtimestamp(timestamp) # 将时间戳转换为datetime对象
print(dt) # 输出:2021-07-29 00:00:00
```
其中,fromtimestamp()方法的参数是一个时间戳,单位为秒。转换后得到的是一个datetime对象,可以通过该对象的属性和方法获取年、月、日、时、分、秒等信息。
阅读全文