创建空的 Python 文件。

Python 脚本的简单示例:

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


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