Python使用datetime模块生成计算时间差函数
import datetime
def difftime(off_bt, on_bt):
#输入的日期和时间是字符串形式,需要先将字符串格式化为datetime形式。
time1 = datetime.datetime.strptime(off_bt, %Y-%m-%d %H:%M:%S)
time2 = datetime.datetime.strptime(on_bt, %Y-%m-%d %H:%M:%S)
num = (time2-time1).seconds
#将int型转换为str返
1