https://github.com/pana/how-to-learn-python3
https://github.com/pana/how-to-learn-python3
Last synced: 30 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pana/how-to-learn-python3
- Owner: Pana
- Created: 2020-09-26T10:30:08.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-13T09:47:21.000Z (over 4 years ago)
- Last Synced: 2025-01-28T21:47:18.090Z (8 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# how-to-learn-python3
Python是一种跨平台的计算机程序设计语言。 是一个高层次的结合了解释性、编译性、互动性和面向对象的脚本语言。最初被设计用于编写自动化脚本(shell),随着版本的不断更新和语言新功能的添加,越多被用于独立的、大型项目的开发。Python 目前被广泛采用因其具有以下优势:
1. 学习简单
2. 生态完善强大,几乎你想做任何事情,都可以找到对应的 Python 包
3. 应用广泛:人工智能,AI,web开发,运维,测试,区块链等### Python 3
Python 有两个大的版本 2,3 但目前 2 已经不再维护所以 Python3 是需要学习的版本### 学习材料
1. [官网](https://www.python.org/)
2. [Pypi](https://pypi.org/)
3. [Python3 教程](https://www.liaoxuefeng.com/wiki/1016959663602400)
4. [Python3 get started](https://www.python.org/about/gettingstarted/)
5. [Python docs](https://docs.python.org/zh-cn/3/)### 阶段学习计划
##### Lesson 2
1. 数据类型,变量
2. string,数组
3. if else
4. 循环##### Lesson 1
1. 安装 python 3
2. 熟悉 PyPi
3. 安装 Python3 开发环境: vs code 或者 pycharm community
4. 编写第一个 Hello world 程序