Q. Study the following program:
Code:
x = 1 while True: if x % 5 = = 0: break print(x) x + = 1 What will be the output of this code?
β
Correct Answer: (C)
error
x = 1 while True: if x % 5 = = 0: break print(x) x + = 1 What will be the output of this code?
You must be Logged in to update hint/solution