ejercicios/basics/hello.py

6 lines
102 B
Python

def print_hi(name):
print(f'Hi, {name}')
if __name__ == '__main__':
print_hi('Hello world!')