Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- n = int(input("enter the number of times u want the pattern to repeat"))
- for i in range(n,0,-1):
- print("*"*i)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement