您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

如何在Python中将H:MM:SS时间字符串转换为秒?

如何在Python中将H:MM:SS时间字符串转换为秒?

def get_sec(time_str): “”“Get Seconds from time.”“” h, m, s = time_str.split(‘:’) return int(h) * 3600 + int(m) * 60 + int(s)

print(get_sec('1:23:45'))
print(get_sec('0:04:15'))
print(get_sec('0:00:25'))
python 2022/1/1 18:36:20 有224人围观

撰写回答


你尚未登录,登录后可以

和开发者交流问题的细节

关注并接收问题和回答的更新提醒

参与内容的编辑和改进,让解决方法与时俱进

请先登录

推荐问题


联系我
置顶