0 Comments
def print_function(x):
for i in range (x+1):
for j in range (i):
print ("*",end="")
print (" ")
return ()