本文将为大家详细介绍“python怎样计算时间差”,内容步骤清晰详细,细节处理妥当,而小编每天都会更新不同的知识点,希望这篇“python怎样计算时间差”能够给你意想不到的收获,请大家跟着小编的思路慢慢深入,具体内容如下,一起去收获新知识吧。
Python主要用来做什么
Python主要应用于:1、Web开发;2、数据科学研究;3、网络爬虫;4、嵌入式应用开发;5、游戏开发;6、桌面应用开发。
python计算时间差的方法:python求时间差主要是用的datetime包,包括同一天情形下的时间差和不同天情形下的时间差,语法为【from datetime import datetime, date】。
python计算时间差的方法:
python求时间差主要是用的datetime
包,包括同一天情形下的时间差和不同天情形下的时间差。
from datetime import datetime, date
同一天情形下的时间差(秒)seconds ,分钟由秒数除以60即可
#计算时间差的分钟数# 同一天的时间差time_1 = '2020-03-02 15:00:00'time_2 = '2020-03-02 16:00:00'time_1_struct = datetime.strptime(time_1, "%Y-%m-%d %H:%M:%S")time_2_struct = datetime.strptime(time_2, "%Y-%m-%d %H:%M:%S")seconds = (time_2_struct - time_1_struct).secondsprint('同一天的秒数为:')print(seconds)
不同天情形下的时间差(也可计算同一天情形下的时间差),total_seconds
# 不同天的时间差time_1 = '2020-03-02 15:00:00'time_2 = '2020-03-03 16:00:00'time_1_struct = datetime.strptime(time_1, "%Y-%m-%d %H:%M:%S")time_2_struct = datetime.strptime(time_2, "%Y-%m-%d %H:%M:%S")# 来获取时间差中的秒数。注意,seconds获得的秒只是时间差中的小时、分钟和秒部分,没有包含天数差,total_seconds包含天数差# 所以total_seconds两种情况都是可以用的total_seconds = (time_2_struct - time_1_struct).total_seconds()print('不同天的秒数为:')print(int(total_seconds))min_sub = total_seconds / 60print('不同天的分钟数为:')print(int(min_sub))
如果你能读到这里,小编希望你对“python怎样计算时间差”这一关键问题有了从实践层面最深刻的体会,具体使用情况还需要大家自己动手实践使用过才能领会,如果想阅读更多相关内容的文章,欢迎关注编程网行业资讯频道!