summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--LectureNotesOnPython.rst23
1 files changed, 22 insertions, 1 deletions
diff --git a/LectureNotesOnPython.rst b/LectureNotesOnPython.rst
index 876b4fb..e3066a8 100644
--- a/LectureNotesOnPython.rst
+++ b/LectureNotesOnPython.rst
@@ -5,7 +5,7 @@ Lecture Notes on Python
:Authors:
蓝珲 (lanhui AT zjnu.edu.cn)
-:Version: 0.1.5 of 2019-06-10
+:Version: 0.1.5 of 2019-07-26
@@ -82,6 +82,27 @@ Bit, byte, KB, MB, GB, TB换算。
习语言、易语言等目前非主流语言。
+Python能做什么?
+-----------------------------------------------------
+
+可以当一个计算器。 交互模式。
+
+可以处理大量文本。 强大的标准库。
+
+可以画图。 库matlibplot。
+
+可以写简单的游戏。库pygame。
+
+可以做科学计算。 numpy, scipy。
+
+可以做机器学习,比如人脸识别。
+
+可以做网路爬虫。
+
+可以做网页应用程序。 Flask。
+
+只要有对应的库,几乎什么都可以做。 如果没有库, 可以自己写库。 当然, 要想写一个有用的、受欢迎的库不是简简单单一蹴而就的事情。 很多情况下需要有公司的支援。
+
把现实的问题转化为计算机可以处理的问题
-----------------------------------------------------