0
range related doubt! in python.
can someone please help to understand this, for x in range(2,2): if 2%x==0: <------- this condition will be True Or False! and how?? and explain, range(2,2) also!
3 Respostas
+ 4
The condition would be true
+ 3
Condition in *if* statment is true but your program is not even entering the loop.
0
sorry I mistakenly placed 2 in place of x!!