Files
30-seconds-of-code/snippets/arithmetic-progression.md
Angelos Chalaris f6a215e9e3 Kebab file names
2023-04-27 22:00:06 +03:00

497 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Arithmetic progression math number-2 2020-07-28T13:57:33+03:00 2020-11-02T19:27:07+02:00

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]