0
What is the output ,how it's executing explain
i=1 While True: If i%0O==0: break Print (i) i+=1
1 Réponse
+ 5
Syntax and Keyword capitalization aside, what is "0O"?
while True will create an infinite loop, then that condition inside will be your terminator, if it is True then the loop will break and end.