7 lines
108 B
Text
7 lines
108 B
Text
for i in range(1,5)
|
|
s = ""
|
|
for j in range(1, i)
|
|
s = s + "*"
|
|
end for
|
|
print s
|
|
end for
|