# while True loop while True: print("This will continue to print this forever") # while variable loop value = 5 while value = 5: # Since this is true, this will continue on forever print("Yes")