Skip to content

Instantly share code, notes, and snippets.

@tarunasolanki
Last active August 3, 2019 15:07
Show Gist options
  • Save tarunasolanki/11c9894a8867b8e8b230004b63c9183b to your computer and use it in GitHub Desktop.
Save tarunasolanki/11c9894a8867b8e8b230004b63c9183b to your computer and use it in GitHub Desktop.
Program to print right right-angled triangle using python
#Program to print star pattern as per below
# *
# **
# ***
# ****
#*****
n=6
for i in range(1,n):
for j in range (n,i,-1):
print(" ",end="")
for k in range (1,i+1):
print("*",end="")
print("")
print("Happy coding!!!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment