py-basic/hello.py

6 lines
131 B
Python
Raw Normal View History

2022-11-29 09:43:18 +01:00
print("hello world!\n")
for i in range(10):
if(i<9):
print((i)*"hello-"+"hello")
elif(i==0):
print("hello")