Tuesday 6 February 2024

Class 11 CS Practical - 10

 

10 - Write a program in Python to generate the following pattern using nested loops:

12345

1234

123

12

1


for i in range(5,0,-1):

    for j in range(1,i+1):

        print(j,end='')

    print()

 

Output:

12345

1234

123

12

1


No comments:

Post a Comment