Python - While Loop
What will be printed by this code?
i = 1
while True:
if i > 4:
break
print(i)
i += 2What will be printed by this code?
i = 1
while True:
if i > 4:
break
print(i)
i += 215+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions