Tuesday 6 February 2024

Class 11 CS Practical - 15

 

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

*

**

***

****

*****


for i in range(1,6):

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

        print("*",end='')

    print()

 

Output:

*

**

***

****

*****


No comments:

Post a Comment