Arithmetic progression
Generates a list of numbers in the arithmetic progression starting with the given positive integer and up to the specified limit.
- Use
range()
andlist()
with the appropriate start, step and end values.
Generates a list of numbers in the arithmetic progression starting with the given positive integer and up to the specified limit.
range()
and list()
with the appropriate start, step and end values.