Nate
0
Q:

python infinite loop

#infinite While on Python

while True:
  print('Hello World!')
5
while True:
  print("wow")
3
#there are 2 ways to make a while loop in python

#first way -

while True:
  (#what ever you want in the loop)
    
#second way - 
    
while 1:  
    (#what ever you want in the loop)
6

i = 0

while i < 6:

    i += 1

  if i == 3:
    continue
  print(i)

 
3
while <Condition>:
  <code>
  
  #example
  i = 10
  while i == 10:
    print("Hello World!")
2
while True:
  (#what ever you want in the loop)
1
#Infinite loop python
while(1):
  print('This is a example of an infinite loop')
0

New to Communities?

Join the community