下面代码段是关于python计算指定多少天后的日期的代码。 d1 = datetime.datetime.now()d3 = d1 + datetime.timedelta(days =10)print d3.ctime()