如何使用python中timedelta这个类实现月份的累加
1个回答
2017-06-24
展开全部
datetime的timedelta没有关于月份的参数。可以使用time。
import time
now = time.localtime()
print now
last_month = now[1] - 1 or 12
next_month = (now[1] + 3) % 12 or 12
print last_month
print next_month
import time
now = time.localtime()
print now
last_month = now[1] - 1 or 12
next_month = (now[1] + 3) % 12 or 12
print last_month
print next_month
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询