码迷,mamicode.com
首页 > 其他好文 > 详细

生成时间戳

时间:2020-07-03 12:27:02      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:strftime   python   color   keyword   %s   bsp   cal   毫秒级   pre   

python

 1 import time
 2  
 3 # 秒级时间戳
 4 print(int(time.time()))
 5 # 1593748100
 6  
 7 # 毫秒级时间戳
 8 print(int(time.time() * 1000))
 9 # 1593748100746
10  
11 # 用户友好的秒级时间戳
12 print(time.strftime("%Y%m%d%H%M%S", time.localtime(int(time.time()))))
13 # 20200703114820
 
 

生成时间戳

标签:strftime   python   color   keyword   %s   bsp   cal   毫秒级   pre   

原文地址:https://www.cnblogs.com/jade-north/p/13229477.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!