【发布时间】:2016-01-24 06:37:46
【问题描述】:
我希望以下函数每年返回一个元组,即。如果它是 5 年,它将给我一个 year1、year2、year3、year4、year5 的元组。
def nextSalaryFixed(salary, percentage, growth, years):
if years == 1:
tup = (salary * (percentage * 0.01), )
return tup[years-1]
else:
tup = (nextEggFixed(salary, percentage, growth, years - 1) * ((1 + (0.01 * growth))) + (salary * (percentage * 0.01)))
print(tup)
return tup
【问题讨论】:
-
nextEggFixed?那是什么定义的?
标签: python function recursion tuples