吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2150|回复: 4
收起左侧

[求助] python两个日期时间相减得出小时数的问题

[复制链接]
cqwcns 发表于 2020-12-11 23:30
如下代码,我希望获得这两个时间相减的相差小时数(而不是days),应该怎么写?谢谢

[Python] 纯文本查看 复制代码
    print(sil) # 2020-12-10 09:27:40
    print(timeLastToday) # 2020-12-11 23:59:59
    print((timeLastToday - sil)) # 1 days 14:32:19

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

vethenc 发表于 2020-12-11 23:42
startTime= time.strftime("%Y-%m-%d %H:%M:%s", time.localtime())
endTime= time.strftime("%Y-%m-%d %H:%M:%s", time.localtime())
startTime= datetime.datetime.strptime(startTime,"%Y-%m-%d %H:%M:%S")
endTime= datetime.datetime.strptime(endTime,"%Y-%m-%d %H:%M:%S")
# 相减得到秒数
seconds = (endTime- startTime).seconds
hours=(endTime- startTime).hours
day=(endTime- startTime).day
rsnodame 发表于 2020-12-12 00:04
看等非军事 发表于 2020-12-12 00:19
[Python] 纯文本查看 复制代码
>>> sil = datetime.datetime(2020,12,10,9,27,40)
>>> timeLastToday=datetime.datetime(2020,12,11,23,59,59)
>>> print((timeLastToday-sil).total_seconds()/3600)
38.53861111111111
 楼主| cqwcns 发表于 2020-12-12 12:37
已解决,谢谢各位。

[Python] 纯文本查看 复制代码
    # 新增[工单自然时长]列,计算工单自然时长
    sheetOnTheWay['工单自然时长'] = sheetOnTheWay['实际到单时间'].apply(lambda x: int((timeNow - x).total_seconds()) / 3600)
    # 新增[工单跨日时长]列,计算工单跨日时长
    sheetOnTheWay['工单跨日时长'] = sheetOnTheWay['实际到单时间'].apply(lambda x: int((timeLastToday - x).total_seconds()) / 3600)
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 09:35

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表