Answers for "infinite loop python 1s"

5

how to make an infinite loop python

while True:
    print("Hello, World") 


#or

x=3 
while x+3==6:
  print("Hello, World")


# you just have to make you condition is something that alwas true,
#for example: 1+1 > 0 or 0 < 5
Posted by: Guest on September-09-2021

Python Answers by Framework

Browse Popular Code Answers by Language