Tuesday 6 February 2024

Class 11 CS Practical - 06

 

6. Write a program in Python to generate the following pattern using nested loops:

12345

12345

12345

12345

12345


for i in range(1,6):

    for j in range(1,6):

        print(j,end='')

    print()

Output:

12345

12345

12345

12345

12345

No comments:

Post a Comment