减去两次以获得持续时间 Python

如何减去两次以获得 Python 中的持续时间?


我已经使用日期时间尝试了下面的代码。


输入开始时间= 20-07-2020 11:00:00


输入停止时间= 20-07-2020 13:30:00


我想要的输出是 2.5 小时或 2 小时 30 分钟


from datetime import datetime


print("Enter 11:00 13:30 for a task starting at 11am and ending at 1:30 pm.")

start=str(input("Enter the start time:"))

stop=str(input("Enter the stop time:"))


format_date= "%d-%m-%Y %H:%M:%S"

duration=datetime.strptime(start,format_date)-datetime.strptime(stop,format_date)

duration

Task1_start=datetime.strptime(start,format_date)

Task1_stop=datetime.strptime(stop,format_date)


print(f'Start:{Task1_start}, Stop:{Task1_stop}')


繁星淼淼
浏览 225回答 1
1回答

拉莫斯之舞

日期20-07-2020-与您的意思day-month-year不匹配。你的and顺序错误。所以你必须使用而不是%m-%d-%Ymonth-day-yeardaymonth%d-%m%m-%d顺便说一句:你必须计算stop - start而不是start - stopfrom datetime import datetimestart = '20-07-2020 11:00:00'stop = '20-07-2020 13:30:00'format_date = "%d-%m-%Y %H:%M:%S"dt_start = datetime.strptime(start, format_date)dt_stop  = datetime.strptime(stop, format_date)duration = dt_stop - dt_startprint(f'Start: {dt_start}, Stop: {dt_stop}')print(duration)结果Start: 2020-07-20 11:00:00, Stop: 2020-07-20 13:30:002:30:00要格式化它,您需要获取总秒数并计算小时、分钟、秒rest = duration.total_seconds()hours = int(rest // (60*60))rest = rest % (60*60)minutes = int(rest // 60)seconds = int(rest % 60)print(f"{hours} hours, {minutes} minutes, {seconds} seconds")结果2 hours, 30 minutes, 0 seconds或者你必须将持续时间转换为字符串然后拆分它hours, minutes, seconds = str(duration).split(':')print(f"{hours} hours, {minutes} minutes, {seconds} seconds")结果2 hours, 30 minutes, 00 seconds顺便说一句:当你转换duration为字符串时,它会运行类似于我的计算的代码total_seconds——我在源代码中检查过这个。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python