%a 英文星期简写
%A 英文星期的完全
%b 英文月份的简写
%B 英文月份的完全
%c 显示本地日期时间
%d 日期,取1-31
%H 小时, 0-23
%I 小时, 0-12
%m 月, 01 -12
%M 分钟,1-59
%j 年中当天的天数
%w 显示今天是星期几
%W 第几周
%x 当天日期
%X 本地的当天时间
%y 年份 00-99间
%Y 年份的完整拼写
# 引入模块
import time
from datetime import datetime
# 字符类型的时间
tss1 = 'Updated: Mar 02, 2020 09:26 IST'
# 转为时间数组
timeArray=time.strptime(tss1, "Updated: %b %d, %Y %H:%M IST")
print (timeArray)
# 转为时间戳
timeStamp = int(time.mktime(timeArray))
print (timeStamp) # 1381419600
# 格式转换 - 转为 /
a2 = 'Updated: Mar 02, 2020 09:26 IST'
# 先转换为时间数组,然后转换为其他格式
timeArray = time.strptime(a2, "Updated: %b %d, %Y %H:%M IST")
otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
print(otherStyleTime)
#两个时间戳相减得到的天数和秒数
t1 = timeStamp
t2 = time.time()#获取当前时间戳
dt1 = datetime.utcfromtimestamp(t1)
dt2 = datetime.utcfromtimestamp(t2)
# dt2 - dt1
print(dt2 - dt1)
# 2 days, 8:08:33.944095
print((dt2 - dt1).seconds)
# 86399
print((dt2 - dt1).days)
# 1
# 1