Python Program to Create Pyramid Patterns ( inverted half pyramid using * and numbers)
rows = int(input("Enter number of rows: "))
for i in range(rows, 0, -1):
for j in range(0, i):
print("* ", end=" ")
print("\n")
Output
* * * * * * * * * * * * * * *
