- To print half opposite triangle pattern using *
User Input: 4
Output:
* * * * * * * * * *
rows=int(input("Enter number of rows : "))
for i in range(1,rows+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(1,rows+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 !
QuickIn order to succeed you must fail, so that you know what not to do the next time.