Ch 31 infinity loop

 #there is two type of infinity can run

#by mistake

#by yourself

#+=====bye mistake

i=0

 while i<=10:

print("hello world")

#by mistake if u sont increse the value of i it can run infinity

  # by yourself

while True:

  print("hello world")

Comments