3 lines
55 B
Python
3 lines
55 B
Python
|
|
for i in range(0, 20):
|
||
|
|
print("*", end=' ')
|
||
|
|
print(i)
|