python常用实例 发表于 2019-03-13 更新于 2021-03-22 分类于 小工具 求两个时间之间的差123456from datetime import datetime as dtinsert = dt.strptime('2018-03-22 10:00:00', "%Y-%m-%d %H:%M:%S")current = dt.strptime(str(dt.now().strftime('%Y-%m-%d')), '%Y-%m-%d')print (current-insert).days # 天print (current-insert).seconds # 秒print (current-insert).microseconds # 毫秒