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]
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️