py-basic/src/hello.py

8 lines
155 B
Python
Executable File

#!/usr/bin/env python3
print("hello world!\n")
for i in range(10):
if(i<9):
print((i)*"hello-"+"hello")
elif(i==0):
print("hello")