Skip to content

Commit ba2dcd6

Browse files
📝 Enhance Python documentation with additional guidance and resources
- Added introductory information about the tutorial's focus on Python 3.12 for professional developers. - Included verified code examples to provide a comprehensive learning guide. - Recommended VSCode/Cursor as the preferred development tools for Python. - Updated application areas of Python, streamlining the content for clarity. - Added recommended reading links for further learning resources.
1 parent c92e37b commit ba2dcd6

File tree

1 file changed

+15
-4
lines changed
  • docs/docs/选择编程语言/Python

1 file changed

+15
-4
lines changed

docs/docs/选择编程语言/Python/index.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ sidebar_position: 0
33
title: Python语言学习
44
---
55

6+
:::info
7+
本教程基于Python 3.12版本官方文档,面向专业Python开发者。
8+
9+
重点贡献在于为官方文档配上经过人工校验的示例代码,为学习者提供一个全面、系统的Python学习指南。
10+
11+
推荐使用VSCode/Cursor作为Python开发工具,并安装Python扩展。
12+
:::
13+
614
Python 国内用户多读作“派桑”。
715

816
在生活中,人们使用汉语、英语、法语、德语、日语等不同的语言跟不同国家的人进行交流。在使用计算机时,人们不能直接使用英语等人类的语言和计算机交流,而是使用编程语言(Programming Language)将人们的想法编写成程序,再通过执行程序控制计算机去解决各种问题。在计算机世界有着数量众多的编程语言,Python 就是其中一种简单易学的编程语言。在实际应用中,Python 被广泛用于人工智能、云计算、科学运算、Web 开发、网络爬虫、系统运维、图形 GUI、金融量化投资等众多领域。
@@ -19,12 +27,10 @@ Python 语言的发展历史可以分为三个时期:
1927

2028
Python 语言的应用领域非常广泛,主要有以下几个方面:
2129

22-
- 网络爬虫: Python 语言可以模拟浏览器,并且可以使用正则表达式、Beautiful Soup 等工具来提取网页中的信息
30+
- 网络爬虫: Python 语言可以模拟浏览器,并且可以使用正则表达式等工具来提取网页中的信息
2331
- 数据分析: Python 语言可以使用 NumPy、SciPy、Pandas、Matplotlib 等工具来进行数据分析。
24-
- 人工智能: Python 语言可以使用 TensorFlow、PyTorch、Keras 等工具来进行人工智能开发。
32+
- 人工智能: Python 语言可以使用 TensorFlow、PyTorch 等工具来进行人工智能开发。
2533
- Web 开发: Python 语言可以使用 Django、Flask 等框架来进行 Web 开发。
26-
- 系统运维: Python 语言可以使用 Paramiko、Fabric、SaltStack、Ansible 等工具来进行系统运维。
27-
- 金融量化: Python 语言可以使用 PyAlgoTrade、Pybacktest、Zipline 等工具来进行金融量化投资。
2834

2935
Python 语言是目前最流行的编程语言之一,在 2018 年 8 月份,IEEE 发布了 2018 年 8 月编程语言排行榜,Python 语言排名第一,这是 Python 语言第一次登上榜首。Python 语言的发展前景非常广阔,Python 语言在人工智能、云计算、科学运算、Web 开发、网络爬虫、系统运维、图形 GUI、金融量化投资等众多领域都有着广泛的应用,Python 语言的发展前景非常广阔。
3036

@@ -41,3 +47,8 @@ Python 语言的缺点:
4147

4248
- 运行速度慢: Python 语言的运行速度相比 C 语言、C++ 语言稍慢。
4349
- 代码不能加密: Python 语言的源代码不能加密,如果发布的话,任何人都可以破解你的程序。
50+
51+
推荐阅读
52+
- [Python 3.12 官方文档](https://docs.python.org/3.12/)
53+
- [流畅的Python](https://weread.qq.com/web/reader/b64322b0813ab8ee3g018675/)
54+
- [码农高天 不基础的python基础](https://space.bilibili.com/245645656/lists/346060?type=season)

0 commit comments

Comments
 (0)