python时间戳转换标准时间格式
时间: 2023-05-19 19:07:13 浏览: 208
可以使用Python内置的datetime模块来将时间戳转换为标准时间格式,具体代码如下:
```python
import datetime
timestamp = 1628251200 # 时间戳,单位为秒
dt = datetime.datetime.fromtimestamp(timestamp) # 转换为datetime对象
print(dt.strftime('%Y-%m-%d %H:%M:%S')) # 格式化输出,例如:2021-08-06 00:00:00
```
这段代码将时间戳1628251200转换为标准时间格式"2021-08-06 00:00:00"。
相关问题
python时间戳转换标准时间格式,需要精确到毫秒
可以使用Python内置的datetime模块来进行时间戳转换。以下是一个示例代码:
```python
import datetime
timestamp = 1629358800123 / 1000 # 将毫秒转换为秒
dt_object = datetime.datetime.fromtimestamp(timestamp)
print(dt_object.strftime("%Y-%m-%d %H:%M:%S.%f"))
```
输出结果为:2021-08-19 14:20:00.123000
其中,`fromtimestamp()`方法将时间戳转换为datetime对象,`strftime()`方法将datetime对象转换为指定格式的字符串。在格式字符串中,`%f`表示毫秒。
python时间戳转换成时间
非常简单,可以使用datetime模块中的datetime.fromtimestamp()方法进行转换,具体操作如下:
```python
import datetime
timestamp = 1617037721 # 假设这个是时间戳
dt = datetime.datetime.fromtimestamp(timestamp)
print(dt) # 输出:2021-03-29 12:15:21
```
阅读全文