python时间转换时间戳
时间: 2023-10-29 17:59:28 浏览: 124
可以使用Python内置的`datetime`模块来进行时间和时间戳之间的转换。
将时间转换为时间戳可以使用`datetime`模块中的`timestamp()`方法,示例如下:
```python
from datetime import datetime
# 将字符串时间转换为datetime对象
time_str = '2022-01-01 00:00:00'
time_obj = datetime.strptime(time_str, '%Y-%m-%d %H:%M:%S')
# 将datetime对象转换为时间戳
timestamp = time_obj.timestamp()
print(timestamp) # 输出结果:1640976000.0
```
其中,`strptime()`方法用于将字符串时间转换为`datetime`对象,第一个参数为字符串时间,第二个参数为时间格式。常用的时间格式可以参考[官方文档](https://docs.python.org/3/library/datetime.html#strftime-and-strptime-format-codes)。
将时间戳转换为时间可以使用`datetime`模块中的`fromtimestamp()`方法,示例如下:
```python
from datetime import datetime
# 将时间戳转换为datetime对象
timestamp = 1640976000.0
time_obj = datetime.fromtimestamp(timestamp)
# 将datetime对象转换为字符串时间
time_str = time_obj.strftime('%Y-%m-%d %H:%M:%S')
print(time_str) # 输出结果:2022-01-01 00:00:00
```
其中,`strftime()`方法用于将`datetime`对象转换为字符串时间,参数为时间格式,常用的时间格式可以参考[官方文档](https://docs.python.org/3/library/datetime.html#strftime-and-strptime-format-codes)。
阅读全文