Python - While Loop
Find the error in this code:
count = 5
while count > 0
print(count)
count -= 1count = 5
while count > 0
print(count)
count -= 1: after the while condition.while count > 0, causing syntax error.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions