Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
 
PREVIOUS NEXT
Tagged: #infinite #loop #python
ADD COMMENT
Topic
Name
3+5 =