等差数列
生成一个从给定正整数开始的等差数列,直到指定的限制为止。
- 使用
range()
和list()
函数,设置适当的起始值、步长和结束值。
def arithmetic_progression(n, lim):
return list(range(n, lim + 1, n))
arithmetic_progression(5, 25) # [5, 10, 15, 20, 25]
生成一个从给定正整数开始的等差数列,直到指定的限制为止。
range()
和list()
函数,设置适当的起始值、步长和结束值。def arithmetic_progression(n, lim):
return list(range(n, lim + 1, n))
arithmetic_progression(5, 25) # [5, 10, 15, 20, 25]