Q. What is the output of the following code?
Code:
True = False
while True:
print(True)
break
β
Correct Answer: (C)
Error
Explanation: True is a keyword and its value cannot be changed.