py-basic/src/hello.py

8 lines
155 B
Python
Raw Normal View History

2023-04-20 22:52:52 +02:00
#!/usr/bin/env python3
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):
2023-04-20 22:52:52 +02:00
print("hello")