PYTHON PROGRAM TO LOOP INFINITE TIMES
Press ctrl + c to break the loop or click on stop button
while not None:
print("loop")
#or
while not False:
print("loop")
#or
while True:
print("loop")
Press ctrl + c to break the loop or click on stop button
while not None:
print("loop")
#or
while not False:
print("loop")
#or
while True:
print("loop")