年月日T时分Z 转为时间戳或年月日时分秒格式
时间: 2023-10-21 16:15:41 浏览: 102
时间戳格式转换
年月日T时分Z表示的是ISO 8601格式的时间字符串,可以使用Python内置的datetime模块来进行转换。
将年月日T时分Z转换为时间戳:
```python
from datetime import datetime
time_str = '2021-10-01T12:34:56Z'
timestamp = datetime.strptime(time_str, '%Y-%m-%dT%H:%M:%SZ').timestamp()
print(timestamp) # 输出1633076096.0
```
将年月日T时分Z转换为年月日时分秒格式:
```python
from datetime import datetime
time_str = '2021-10-01T12:34:56Z'
dt = datetime.strptime(time_str, '%Y-%m-%dT%H:%M:%SZ')
time_format = dt.strftime('%Y-%m-%d %H:%M:%S')
print(time_format) # 输出2021-10-01 12:34:56
```
需要注意的是,年月日时分秒格式的输出结果可能会受到系统时区的影响。
阅读全文