在终端输入python3 进入python交互式解释器 输入exit()退出交互式解释器
创建python脚本 通过命令执行程序 python hello.py
python hello.py
通过集成开发环境编辑执行python程序 比如PyCharm、vscode
命令行输入python3 进入交互式解释器 输入print("hello", "world") 即可运行