🐍
Python 入门
安装 Python、验证 pip、建立虚拟环境、运行第一个脚本,并学习核心语言基础:数字、字符串、列表、控制流、函数和模块。
basics
Tutorial Progress
Step 1 of 11
1 Introduction to Python
Python is a high-level, general-purpose language that trades performance for readability. It lets you model problems with simple, expressive syntax and ship code that reads like pseudo-code.
It runs on most operating systems, powers web services, data pipelines, automation, and scientific computing. It also has a rich standard library and a massive ecosystem of third‑party packages.
- Readable: Code reads almost like English.
- Versatile: Scripts, web backends, data analysis, and more.
- Expressive: Lists, dicts, and generators let you say more with less.
Install Python on your machine and you are ready to run your first lines.