Skip to content
This repository was archived by the owner on May 7, 2023. It is now read-only.

Files

Latest commit

 

History

History
20 lines (16 loc) · 477 Bytes

arithmetic-progression.md

File metadata and controls

20 lines (16 loc) · 477 Bytes
title type tags cover dateModified
Arithmetic progression
snippet
math
number-2
2020-11-02 19:27:07 +0200

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]