3 lines
65 B
Python
3 lines
65 B
Python
|
def triangle(h):
|
||
|
for n in range(1,h+1):
|
||
|
print('* '*n)
|