7 lines
141 B
Python
7 lines
141 B
Python
def print_hi(name):
|
|
print(f'Hi, {name}') # Press Strg+8 to toggle the breakpoint.
|
|
|
|
if __name__ == '__main__':
|
|
print_hi('PyCharm')
|
|
|
|
|