文章目录
起步
1.1 搭建编程环境
1.1.1 Python 版本
1.1.2 运行 Python 代码片段
print("Hello Python interpreter!")
1.1.3 Sublime Text 简介
简单的文本编辑器。
推荐使用Visual Studio Code(VS Code)
。Visual Studio Code 配置 Python 环境
1.2 在不同的操作系统中搭建 Python 编程环境
1.2.1 在 Windows 系统中搭建 Python 编程环境
1.2.2 在 macOS 系统中搭建 Python 编程环境
1.2.3 在 Linux 系统中搭建 Python 编程环境
1.3 运行 Hello World 程序
print("Hello Python world!")
1.4 解决安装问题
1.5 从终端运行 Python 程序
1.5.1 在 Windows 终端运行 Python 程序
步骤:
- 进入文件所在的目录
- 运行程序
在 Linux 和 macOS 系统中从终端运行 Python 程序
1.6 小结
本章中,大致了解了Python
,安装了Python
。安装了一个文本编辑器,简化Python
代码的编写工作。学会了在终端中运行Python
代码,并运行了第一个程序hello_world.py
。