Python:求时间差(天时分秒格式)
2021-01-06 18:28
标签:format 网络时间 result time orm from 一个 form pre 输入一个10位的时间戳,求出时间差 运行效果: 当前网络时间:2020-05-27 18:00:03.393412 Python:求时间差(天时分秒格式) 标签:format 网络时间 result time orm from 一个 form pre 原文地址:https://www.cnblogs.com/51benpao/p/12975831.htmldef time_diff(timestamp):
onlineTime = datetime.datetime.fromtimestamp(timestamp)
localTime = datetime.datetime.now()
result = localTime - onlineTime
hours = int(result.seconds / 3600)
minutes = int(result.seconds % 3600 / 60)
seconds = result.seconds%3600%60
print("当前网络时间:{0}".format(localTime))
print("上次在线时间:{0}".format(onlineTime))
print("{0}天{1}时{2}分{3}秒前在线".format(result.days,hours,minutes,seconds))
times = int(time.time())-80
time_diff(times)
上次在线时间:2020-05-27 17:58:43
0天0时1分20秒前在线
上一篇:python封装
下一篇:电商平台之运费分摊算法
文章标题:Python:求时间差(天时分秒格式)
文章链接:http://soscw.com/index.php/essay/40527.html