# -*- coding: UTF-8 -*-
import time
ticks =time.time()
print(' 原始时间',ticks)
print(' 秒级时间戳',int(ticks))
print ('毫秒级时间戳',int(round(ticks * 1000)))
#输出当前时间年月日时分秒
now_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
print ('格式化输出年月日时分秒:',now_time)
#输出当前时间的日期 年月日
now_time_date = time.strftime("%Y-%m-%d", time.localtime())
print('格式化输出年月日:',now_time_date)
#日期转时间戳
def unix_time(dt):
# 转换成时间数组
timeArray = time.strptime(dt, "%Y-%m-%d %H:%M:%S")
# 转换成时间戳
timestamp = int(time.mktime(timeArray))
return timestamp
#时间戳转日期
def custom_time(timestamp):
# 转换成localtime
time_local = time.localtime(timestamp)
# 转换成新的时间格式(2016-05-05 20:28:54)
dt = time.strftime("%Y-%m-%d %H:%M:%S", time_local)
return dt
time_mk = unix_time('2020-04-29 15:22:41')
print('日期2020-04-29 15:22:41转时间戳',time_mk)
#########
## 打印结果
########
原始时间 1588145351.771515
秒级时间戳 1588145351
毫秒级时间戳 1588145351772
格式化输出年月日时分秒: 2020-04-29 15:29:11
格式化输出年月日: 2020-04-29
日期2020-04-29 15:22:41转时间戳 1588144961