Skip to content

Python 简介与环境搭建

本章讲解 Python 语言的基本概念和环境搭建。


章节导航

章节文件主题
0101-Python简介.mdPython特点、应用领域、版本选择
0202-环境搭建.md安装配置、第一个程序

核心知识点

Python 特点

  • 简洁易读、开源免费、跨平台
  • 丰富的库、多用途

应用领域

  • Web 开发、数据分析、人工智能
  • 自动化脚本、游戏开发、科学计算

版本选择

  • 选择 Python 3
  • Python 2 已在 2020 年停止维护

安装要点

  • Windows:勾选 "Add Python to PATH"
  • Mac:推荐使用 Homebrew
  • Linux:使用包管理器安装

运行方式

bash
# 交互式模式
python          # Windows
python3         # Mac/Linux

# 脚本文件模式
python hello.py      # Windows
python3 hello.py     # Mac/Linux