0
One example in while loops i don't understand in solo app for Python. So please tell me. Thanks in advance
i = 3 while i >=0: print(i) i = i - 1 what is the answer???
4 Answers
+ 8
last value of "i" will be "-1"
+ 8
Output: 3210
0
my answer is same as yours but in app the answer is 4.
0
Wait what?