Concept

range()

The range(start, stop, step) function returns a sequence of numbers starting from 'start' and ending at 'stop' - 1, incremented by 'step' When calling the function, arguments for 'start' and 'step' may be omitted. They will default to 0 and 1, respectively.

0

1

Updated 2021-01-19

Tags

Python Programming Language

Data Science

Related