Star pattern

 # Star Display

"""

"""

# Read Number of lines 

N = int(input("Enter number of Lines : "))


print("Star Pattern : ")


for n in range(N,0,-1):

print("* "*n)


No comments:

Post a Comment

Don't be a silent reader...
Leave your comments...

Anu