python 定义一个时间戳变量
时间: 2023-06-20 21:08:35 浏览: 99
python实现时间戳转换工具
在 Python 中,可以使用 `time` 模块来获取当前的时间戳。以下是一个示例代码:
```python
import time
# 获取当前时间戳
timestamp = int(time.time())
print("当前时间戳为:", timestamp)
```
输出:
```
当前时间戳为: 1634740560
```
其中 `time.time()` 函数会返回当前系统时间的时间戳,类型为 float,需要使用 `int()` 函数将其转换为整数类型。
阅读全文