comment faire une demi-pyramide en python

row = int(input("Enter total row = "))
for x in range(1, row+1):
    print(x*"* ")
Excited Earthworm