如何使用python中timedelta这个类实现月份的累加
2个回答
推荐于2016-09-01
展开全部
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
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
引用chenchiheng123的回答:
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
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
展开全部
next_month = (now[1] + 3) % 12 or 12 应为:
next_month = (now[1] + 1) % 12 or 12
next_month = (now[1] + 1) % 12 or 12
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询