Python - While Loop
What will be the output of this code?
counter = 1
while counter <= 3:
print(counter)
counter += 1What will be the output of this code?
counter = 1
while counter <= 3:
print(counter)
counter += 115+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions