The _____________ function returns a sequence of numbers, starting from 0 by default, increments by 1 (by default), and ends at a specified number.
Answers
Answered by
1
Answer:
the --------------- function returns a sequence of numbers,starting from 0 by default , increments by ( by default), and ends at a specified number .
Answered by
0
The range() function returns a sequence of numbers, starting from 0 by default, increments by 1 (by default), and ends at a specified number.
Explanation:
- The range() function returns a sequence of numbers, starting from 0 by default, increments by 1 (by default), and ends at a specified number.
- In Python language, the range() is a built-in function that is used to create a list containing a sequence of numbers. A sequence of numbers is returned by the range() function as its object that can be accessed by its index value
- Syntax : range(start, stop, step)
Similar questions