File tree Expand file tree Collapse file tree 3 files changed +61
-4
lines changed Expand file tree Collapse file tree 3 files changed +61
-4
lines changed Original file line number Diff line number Diff line change 1
- # Python
1
+ IT 行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰,但是,我们要清楚:淘汰的永远只是那些初级水平的从业者,过硬技术的从业者永远都是稀缺的。因此对于学习,我们还是要踏踏实实的。
2
2
3
- 草根学 Python 是基于 Python 3.6 写的 Python 入门系列教程,为了更好的阅读,把它整理在 [ GitBook] ( https://www.readwithu.com/ ) 上了,希望对 Python 入门者有帮助。
4
3
5
- 注:如果 [ GitBook] ( https://www.readwithu.com/ ) 访问慢,也可以到个人博客查阅:[ 草根学 Python] ( http://twowater.com.cn/categories/Python/%E8%8D%89%E6%A0%B9%E5%AD%A6-Python/ )
4
+ 自学 Python ,也是一样,不要一开始因为头脑发热就不停地收藏各种资料网站,购买各种书籍,下载了大量的教学视频,过了几天,学习的热情开始褪去,再过几个星期,终于完成了学习课程 —— 《从入门到放弃》。
5
+
6
+
7
+ 下面是我个人整理和编写的 Python 系列文章,希望对学习 Python 的童鞋有帮助。
8
+
9
+
10
+ # Python 入门
11
+
12
+ 对于入门,主要是掌握基本的语法和熟悉编程规范,因此大部分的教程基本一致的,所以还是建议选好适合自己的一个教程,坚持学下去。
13
+
14
+ 这里个人整理了一部分教程,包括有视频和博客:[ Python 入门资源] ( /Res/python入门学习资料.md )
15
+
16
+ 在 Python 入门中,本人自己编写了一系列的 《 草根学 Python 》 博客, 是基于 Python 3.6 写的 Python 入门系列教程,为了更好的阅读,把它整理在 [ GitBook] ( https://www.readwithu.com/ ) 上;如果 [ GitBook] ( https://www.readwithu.com/ ) 访问慢,也可以到个人博客查阅:[ 草根学 Python] ( http://twowater.com.cn/categories/Python/%E8%8D%89%E6%A0%B9%E5%AD%A6-Python/ ) ,希望对各位入门 Python 有所帮助。
6
17
7
18
** 主要目录如下:**
8
19
86
97
- [ re.match 和 re.search] ( /python14/6.md )
87
98
* [ 闭包] ( /python15/1.md )
88
99
* [ 装饰器] ( /python16/1.md )
100
+
101
+
102
+ # Python 进阶
103
+
104
+ 持续更新....
Original file line number Diff line number Diff line change
1
+ # python 入门学习资源
2
+
3
+
4
+ ### 视频教程:
5
+
6
+ * 传智播客教程:(压缩包密码在压缩包解析那里)
7
+ - 链接:[ http://pan.baidu.com/s/1jI85lv4 ] ( http://pan.baidu.com/s/1jI85lv4 ) 密码:429y
8
+ - 解压密码:www.snowfox.wang
9
+
10
+ * 黑马
11
+ - 链接:[ http://pan.baidu.com/s/1nvJox4H ] ( http://pan.baidu.com/s/1nvJox4H ) 密码:h0d2
12
+
13
+
14
+ ### 博客网站:
15
+
16
+ * 本人编写的 Python 系列文章
17
+ - 链接: [ https://www.readwithu.com/ ] ( https://www.readwithu.com/ )
18
+ - github :[ https://github.com/TwoWater/Python ] ( https://github.com/TwoWater/Python )
19
+ - 本草根编写的 Python 文章,里面有各种例子代码
20
+
21
+ * Python 在线手册
22
+ - 链接: [ http://docs.pythontab.com ] ( http://docs.pythontab.com )
23
+ - Python 在线手册站,收集整理了大量 Python 流行技术文档和教程
24
+
25
+ * Python轻松入门
26
+ - 链接:[ https://study.163.com/course/introduction.htm?courseId=1003655001&utm_campaign=share&utm_content=courseIntro&utm_medium=iphoneShare&utm_source=weixing ] ( https://study.163.com/course/introduction.htm?courseId=1003655001&utm_campaign=share&utm_content=courseIntro&utm_medium=iphoneShare&utm_source=weixing )
27
+ - 网易云课程,Python 轻松入门
28
+
29
+ * 廖雪峰 Python 教程
30
+ - 链接:[ http://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000 ] ( http://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000 )
31
+ - 经典的 Python 入门文章
32
+
33
+ * Python 基础教程
34
+ - 链接:[ http://www.runoob.com/python/python-tutorial.html ] ( http://www.runoob.com/python/python-tutorial.html )
35
+ - 详细的记录 Python 各个知识点的用法讲解
36
+
37
+ * 莫烦Python
38
+ - 链接:[ https://morvanzhou.github.io/tutorials/python-basic/ ] ( https://morvanzhou.github.io/tutorials/python-basic/ )
39
+
40
+ * The Hitchhiker’s Guide to Python
41
+ - 链接:[ http://docs.python-guide.org/en/latest/ ] ( http://docs.python-guide.org/en/latest/ )
Original file line number Diff line number Diff line change 8
8
9
9
通过上面的定义,不难发现,函数和模块都是用来实现功能的,只是模块的范围比函数广,在模块中,可以有多个函数。
10
10
11
- 竟然了解了什么是模块了 ,那么为什么需要模块呢?竟然有了函数 ,那为啥那需要模块?
11
+ 既然了解了什么是模块了 ,那么为什么需要模块呢?既然有了函数 ,那为啥那需要模块?
12
12
13
13
最大的好处是大大提高了代码的可维护性。其次,编写代码不必从零开始。当一个模块编写完毕,就可以被其他地方引用。我们在编写程序的时候,也经常引用其他模块,包括 Python 内置的模块和来自第三方的模块。
14
14
You can’t perform that action at this time.
0 commit comments