5 lines
74 B
Python
5 lines
74 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
for i in range(6):
|
||
|
print(f"Hello world, {i}")
|