4 lines
109 B
Python
4 lines
109 B
Python
for i in range(10):
|
|
print(i,"hello worl")
|
|
print(i+1,"hello world")
|
|
print(i+2,"hello world again") |