您现在的位置是:课程教程文章

python 如何获取毫秒级系统时间

2023-12-18 22:12课程教程文章 人已围观

python 如何获取毫秒级系统时间?下面给大家举个例子:

相关推荐:《Python基础教程》

import time
import datetime
t = time.time()
print (t)                #原始时间数据
print (int(t))              #秒级时间戳
print (int(round(t * 1000)))     #毫秒级时间戳
nowTime = lambda:int(round(t * 1000))
print (nowTime());              #毫秒级时间戳,基于lambda
print (datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'))   #日期格式化

结果如下:

1499825149.26
1499825149
1499825149257
1499825149257
2017-07-12 10:05:49
课程教程:python 如何获取毫秒级系统时间

上一篇:python于哪一年正式发布

下一篇:没有了

站点信息

  • 文章统计篇文章