diff --git a/0_python/README.md b/0_python/README.md index 60b1130..af63ae2 100644 --- a/0_python/README.md +++ b/0_python/README.md @@ -3,7 +3,9 @@ Python 是一门上手简单、功能强大、通用型的脚本编程语言。Python 类库极其丰富,这使得 Python 几乎无所不能,网站开发、软件开发、大数据分析、网络爬虫、机器学习等都不在话下。Python最主要的优点是使用人类的思考方式来编写程序,大多数情况下使用封装好的库能够快速完成给定的任务,虽然执行的效率不一定很高,但是极大的缩短了程序设计、编写、调试的时间,因此非常适合快速学习、尝试、试错。 -本教程来自[IPython Notebooks to learn Python](https://github.com/rajathkmp/Python-Lectures),将其中部分示例代码转化成Python3。关于Python的安装可以自行去网络上查找相关的资料,或者参考[安装Python环境](../references_tips/InstallPython.md)。 +关于Python的安装可以自行去网络上查找相关的资料,或者参考[《安装Python环境》](../references_tips/InstallPython.md)。 + +![learn python](images/learn_python.jpg) ## 内容 0. [Install Python](../references_tips/InstallPython.md) @@ -27,7 +29,7 @@ Python 是一门上手简单、功能强大、通用型的脚本编程语言。P - Inheritance -## References +## 参考资料 * [安装Python环境](../references_tips/InstallPython.md) * [IPython Notebooks to learn Python](https://github.com/rajathkmp/Python-Lectures) * [廖雪峰的Python教程](https://www.liaoxuefeng.com/wiki/1016959663602400) diff --git a/0_python/images/learn_python.jpg b/0_python/images/learn_python.jpg new file mode 100644 index 0000000..122413f Binary files /dev/null and b/0_python/images/learn_python.jpg differ