python毫秒转化为年月日
时间: 2023-05-13 21:04:55 浏览: 94
可以使用Python中的datetime模块来实现毫秒转化为年月日。以下是示例代码:
```python
import datetime
milliseconds = 1629264000000 # 毫秒数
# 将毫秒数转化为datetime对象
date = datetime.datetime.fromtimestamp(milliseconds / 1000.0)
# 格式化输出年月日
print(date.strftime('%Y-%m-%d'))
```
输出结果为:2021-08-18
阅读全文