Python: Demonstrate an example of for loop

Python for loop example: Here, we are going to actualize a program that will demonstrate examples/utilization of for loop.

Here, we are running loop for given extents with different contentions like contention 1,2,3 and turn around the request of the loop.

Program:

print("Type 1")
for i in range(10):  # start=0 , end=10,step=1
    print(i,end="  ")

print("\nType 2")
for i in range(1,11):  # start=1 , end=10,step=1
    print(i,end="  ")

print("\nType 3")
for i in range(1,11,3):  # start=1 , end=10,step=3
    print(i,end="  ")
    
print("\nType 4")
for i in range(10,0,-1):  # start=10 , end=0,step=-1
    print(i,end="  ")

Output:

Type 1
0  1  2  3  4  5  6  7  8  9
Type 2
1  2  3  4  5  6  7  8  9  10
Type 3
1  4  7  10
Type 4
10  9  8  7  6  5  4  3  2  1

1 thought on “Python: Demonstrate an example of for loop”

  1. Pingback: Python: Demonstrate an example of for each loop – JustTechReview

Leave a Comment

error: Alert: Content is protected!!