30秒学会 Python 片段 · 2023年11月8日

30秒学会 Python 片段 – Arithmetic progression

Generates a list of numbers in the arithmetic progression starting with the given positive integer and up to the specified limit.

  • Use range() and list() with the appropriate start, step and end values.

代码实现

def arithmetic_progression(n, lim):
  return list(range(n, lim + 1, n))

使用样例

arithmetic_progression(5, 25) # [5, 10, 15, 20, 25]

翻译自:https://www.30secondsofcode.org/python/s/arithmetic-progression