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