+ 1
Suppose if we write for_in range(x,y) , to then how will these loop runs...
I have some confusion in for loop of python
2 Answers
+ 1
It runs once for each integer between those two numbers, assigning it to the variable.
+ 1
Thanks maneren!
I have some confusion in for loop of python