Files
30-seconds-of-code/snippets/arithmetic_progression.md
Isabelle Viktoria Maciohsek 897cf88a41 Update arithmetic_progression.md
2020-07-31 22:37:02 +03:00

391 B

title, tags
title tags
arithmetic_progression math,beginner

Returns 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 find_multiples(n, lim):
  return list(range(n, lim + 1, n))
find_multiples(5, 25) # [5, 10, 15, 20, 25]