- To print half opposite reverse triangle pattern using *
User Input: 4
Output:
* * * * * * * * * *
rows=int(input("Enter number of rows : "))
for i in range(rows,0,-1):
for j in range(1,rows+1):
if(j<i):
print(" ", end="")
else:
print("* ", end="")
print("")
Enter number of rows : 4 * * * * * * * * * *Program
Main logic :
for i in range(rows,0,-1): #rows : number of rows to print
for j in range(1,rows+1):
if(j<i):
print(" ", end="")
else:
print("* ", end="")
print("")
You can print any thing in this pattern, just replace your value with *
Coming Soon !
QuickStrength does not come from winning. Your struggles develop your strengths.