Q. What will be the output of the following Python code?
Code:
True = False
while True:
print(True)
break
β
Correct Answer: (D)
none of the mentioned
True = False
while True:
print(True)
break
You must be Logged in to update hint/solution