0
What is the use of 'True' after while statement?
i = 5 while True: print (i)
2 Réponses
+ 6
Hey! Wrong code!It must be
i = 5
while True:
print (i)
That will be infinite loop bc "while" will running if condition is "true"
0
condition that "it's true that the loop is running"