PyQt5.QtCore QDateTime 增加天数的写法
时间: 2024-01-22 13:17:38 浏览: 135
js 日期 增加 n天
3星 · 编辑精心推荐
可以使用 QDateTime 的 addDays() 方法来增加天数。具体的代码如下:
```python
from PyQt5.QtCore import QDateTime, Qt
# 创建 QDateTime 对象
dt = QDateTime.currentDateTime()
# 增加 5 天
dt = dt.addDays(5)
# 输出结果
print(dt.toString(Qt.ISODate))
```
在上面的代码中,我们首先使用 currentDateTime() 方法创建了一个 QDateTime 对象,然后使用 addDays() 方法增加了 5 天,最后使用 toString() 方法将结果以 ISO 格式输出。你可以根据自己的需求修改代码中的参数。
阅读全文