0% found this document useful (0 votes)
4 views1 page

Nested For Loop Examples

Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Nested For Loop Examples

Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

""" Nested for loop

"""

""" 1st Example """

# for i in range(5):
# print("i value is ",i) # it will print
only 1 value " 0 '
# for j in range(5,10):
# print("j value is ",j) # it will print
all iterative value " 5 6 7 8 9 "

""" 2nd Example """

# for i in range(5):
# for j in range(5,10):
# print(f"i value is {i} and j value is {j}",j)

""" 3rd Example """

# for i in range(2):
# for j in range(2,4):
# for k in range(4, 6):
# print(f"i value is {i} and j value is {j} i value is {k}")

""" 4th Example(tables) """

# 2*1=2 / 2*2=4 /2*10=20

# for i in range(2,3):
# for j in range(1,11):
# print(f"{i}*{j}=",i*j)

You might also like