Infinite Loop
# Infinite While Loop on Python Example Format
while True:
Your Code Here
# end of whilebreak keyword
break keyword
while True:
Some Code
if _boolean_condition_:
break
# end of whilecontinue keyword
continue keywordReal World Application of an Infinite Loop: Game Loop
Last updated