Answers for "use infinity in dor loop python"

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
0

how to make an infinite loop in python

while 1/True:
  #whatever command u wish to use
Posted by: Guest on January-21-2022

Python Answers by Framework

Browse Popular Code Answers by Language