Nest all content into snippets
This commit is contained in:
21
snippets/python/s/arithmetic-progression.md
Normal file
21
snippets/python/s/arithmetic-progression.md
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Arithmetic progression
|
||||
type: snippet
|
||||
language: python
|
||||
tags: [math]
|
||||
cover: number-2
|
||||
dateModified: 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]
|
||||
```
|
||||
Reference in New Issue
Block a user