빈 Python 파일을 생성합니다.

Python 스크립트의 간단한 예시:

def print_hi(name):
    print(f'Hi, {name}')


if __name__ == '__main__':
    print_hi('Python')