Python的三种运行方式
交互式解释器
在终端输入python3 进入python交互式解释器 输入exit()退出交互式解释器
命令行脚本
创建python脚本 通过命令执行程序 python hello.py
集成开发环境(IDE)
通过集成开发环境编辑执行python程序 比如PyCharm、vscode
第一个python程序
方式一
命令行输入python3 进入交互式解释器 输入print("hello", "world") 即可运行
2022-11-04 21:42:24
在终端输入python3 进入python交互式解释器 输入exit()退出交互式解释器
创建python脚本 通过命令执行程序 python hello.py
通过集成开发环境编辑执行python程序 比如PyCharm、vscode
命令行输入python3 进入交互式解释器 输入print("hello", "world") 即可运行
下一篇:(4)UIView和父子控件