Files
30-seconds-of-code/snippets/arithmetic_progression.md
Isabelle Viktoria Maciohsek 19f636408c Make expertise a field
2022-03-01 20:27:27 +02:00

21 lines
501 B
Markdown

---
title: Arithmetic progression
tags: math
expertise: beginner
firstSeen: 2020-07-28T13:57:33+03:00
lastUpdated: 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.
```py
def arithmetic_progression(n, lim):
return list(range(n, lim + 1, n))
```
```py
arithmetic_progression(5, 25) # [5, 10, 15, 20, 25]
```