5 lines
96 B
Python
5 lines
96 B
Python
def print_hi(name):
|
|
print(f'Hi, {name}')
|
|
|
|
if __name__ == '__main__':
|
|
print_hi('PyCharm') |