Python - While Loop
What does the while True loop do in Python?
What does the while True loop do in Python?
while TrueTrue is always true, so the loop will keep running forever.break statement is used inside the loop when a condition is met.break. -> Option Awhile True = infinite loop until break [OK]while True loops forever until break stops it [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions