xxxxxxxxxx
# The While Loop
while True:
print("This will continue printing until the code returns False.")
xxxxxxxxxx
#add the number of times you want it to loop in the bracket,
#If you want it to run forever leave it empty
for i in range():
#code here.
xxxxxxxxxx
#Infinite Loop in Python
i = True
while i == True:
print("I will run forever and probably crash python in a few minutes")