Q. How do you write an infinite loop in Python?
β
Correct Answer: (A)
while True:
Explanation: `while True:` creates an infinite loop.