Computer Science, asked by ayushkumargolap89, 16 days ago

Which one of the following a loop should have? *
start value, stop value, increament/decreament value start value,
stop value start value, increament/decreament value
None of these​

Answers

Answered by Gopalsethi202
0

Answer:

What is Python Range?

Python range() is a built-in function available with Python from Python(3.x), and it gives a sequence of numbers based on the start and stop index given. In case the start index is not given, the index is considered as 0, and it will increment the value by 1 till the stop index.

For example range(5) will output you values 0,1,2,3,4 .The Python range()is a very useful command and mostly used when you have to iterate using for loop.

Similar questions