在 Python 中,你可以使用 `time` 模块或 `datetime` 模块来获取毫秒级的时间戳。
方法一:使用 `time` 模块获取毫秒级时间戳
python
import time
# 获取当前时间的毫秒级时间戳
timestamp = int(time.time() * 1000)
print(timestamp)
方法二:使用 `datetime` 模块获取毫秒级时间戳
python
from datetime import datetime
# 获取当前时间
now = datetime.now()
# 转换为毫秒级时间戳
timestamp = int(datetime.timestamp(now) * 1000)
print(timestamp)
以上两种方法都可以获取当前时间的毫秒级时间戳。注意,时间戳是一个整数,表示从某个固定时间点(通常是 1970 年 1 月 1 日)以来的毫秒数。
如果你需要在程序中多次获取时间戳,建议将其封装为一个函数以便重复使用。例如:
python
import time
def get_milliseconds_timestamp():
return int(time.time() * 1000)
# 使用函数获取时间戳
timestamp = get_milliseconds_timestamp()
print(timestamp)
希望这可以帮助你获取毫秒级的时间戳!