python 打印时间戳
时间: 2024-10-07 14:03:49 浏览: 34
当前时间戳-[matlab从入门到精通].周建兴.清晰版
在Python中,打印时间戳通常使用`datetime`模块的`timestamp()`函数或者`time`模块的`time()`函数结合`strftime()`函数格式化输出。以下是两种常见的方式:
1. 使用`datetime`模块:
```python
from datetime import datetime
current_time = datetime.now()
timestamp = current_time.timestamp()
print(f"当前时间戳: {int(timestamp)} 或者 {timestamp}")
# 如果需要格式化输出
formatted_timestamp = datetime.fromtimestamp(timestamp).strftime('%Y-%m-%d %H:%M:%S')
print(f"格式化的时间戳: {formatted_timestamp}")
```
2. 使用`time`模块:
```python
import time
timestamp = int(time.time())
print("当前时间戳:", timestamp)
# 对于格式化输出,先获取当前时间然后转换
formatted_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(timestamp))
print("格式化的时间戳:", formatted_time)
```
阅读全文