# The While Loop while True: print("This will continue printing until the code returns False.")
#Infinite Loop in Python i = True while i == True: print("I will run forever and probably crash python in a few minutes")