绑我写一个python datetime模块 时间加减
时间: 2023-05-13 19:05:08 浏览: 135
详解python datetime模块
5星 · 资源好评率100%
可以使用 datetime 模块中的 timedelta 类来进行时间加减操作,示例代码如下:
```python
import datetime
# 获取当前时间
now = datetime.datetime.now()
# 加上一天
tomorrow = now + datetime.timedelta(days=1)
# 减去两小时
two_hours_ago = now - datetime.timedelta(hours=2)
print("当前时间:", now)
print("明天此时:", tomorrow)
print("两小时前:", two_hours_ago)
```
输出结果如下:
```
当前时间: 2022-01-01 12:00:00.000000
明天此时: 2022-01-02 12:00:00.000000
两小时前: 2022-01-01 10:00:00.000000
```
阅读全文