Python获取当前时间的时间戳

秒级

import time

now = time.time() #返回float数据
#  获取当前时间戳---秒级级
print(int(now))

毫秒级

import time

now = time.time() #返回float数据

#毫秒级时间戳
print(int(round(now * 1000)))

你可能感兴趣的:(python)