E-mail : support@tech2now.in

Loop in Python

There are the following loops in Python.

#While Loop
i=0
while(i<3):
    i = i+1
    print("Good Morning------")

#While with else
k=0
while(i<2):
    i = i+1
    print("Good Morning")
else:
  print("Good Night........")     

#For loop
for i in range(0,2):
  print("Good Morning*********")

OutPut:
Good Morning------
Good Morning------
Good Morning------
Good Night........
Good Morning*********
Good Morning*********

GitHub Repository URL