python怎么从datetime.timedelta提取小时
时间: 2024-05-01 16:20:42 浏览: 87
头歌python本月天数.doc
可以使用 `total_seconds()` 方法将 `timedelta` 对象转换为秒数,再除以3600即可得到小时数。例如:
```python
import datetime
td = datetime.timedelta(hours=5, minutes=30)
hours = td.total_seconds() / 3600
print(hours) # 输出 5.5
```
阅读全文