码迷,mamicode.com
首页 > 编程语言 > 详细

python 根据时间戳获取秒🐱

时间:2019-06-28 00:51:51      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:http   输出   日期   %s   none   htm   oca   pytho   tps   

 

print("当前时间: ",time.strftime(%Y.%m.%d %H:%M:%S ,time.localtime(time.time())))


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


#将日期转为秒级时间戳
dt = 2018-01-01 10:40:30
ts = int(time.mktime(time.strptime(dt, "%Y-%m-%d %H:%M:%S")))
print (ts)
#输出
1514774430


#将秒级时间戳转为日期
ts = 1515774430
dt = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(ts))
print(dt)
#输出
2018-01-13 00:27:10

参考:
https://www.cnblogs.com/fangbei/p/python-time.html

 

python 根据时间戳获取秒🐱

标签:http   输出   日期   %s   none   htm   oca   pytho   tps   

原文地址:https://www.cnblogs.com/sea-stream/p/11100333.html

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