[置顶] Python3学习笔记&开发记录

时间:2022-01-12 22:04:48

感谢廖雪峰大神

首先要感谢廖雪峰大神的无私付出.Python3学习笔记是学习廖大神的Python教程时写的.有不少内容是直接拷贝的,写这些笔记的目的只是想做一个记录,以便忘记的时候查看(要是再去查看廖大神的教程就会很浪费时间了,廖大神的教程是很适合初学者的).下面附上廖雪峰大神Python教程链接:http://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000

Python Documentation:

https://docs.python.org/3/index.html

学习笔记链接

  1. Python3 基础:python简介基本知识 http://blog.csdn.net/u014115673/article/details/53841172
  2. Python3 基础:数据类型和变量 http://blog.csdn.net/u014115673/article/details/53841513
  3. Python3 基础:字符串和编码 http://blog.csdn.net/u014115673/article/details/53842050
  4. Python3 基础:list和tuple http://blog.csdn.net/u014115673/article/details/53870923
  5. Python3 基础:条件判断和循环 http://blog.csdn.net/u014115673/article/details/53871130
  6. Python3 基础:dict和set http://blog.csdn.net/u014115673/article/details/53871324
  7. Python3 基础:定义函数 http://blog.csdn.net/u014115673/article/details/53871473
  8. Python3 基础:高级特性-切片和迭代 http://blog.csdn.net/u014115673/article/details/53872066
  9. Python3 基础:高级特性-列表生成式和生成器 http://blog.csdn.net/u014115673/article/details/53872218
  10. Python3 基础:高级特性- 迭代器 http://blog.csdn.net/u014115673/article/details/53872527
  11. Python3 基础:高阶函数和map/reduce http://blog.csdn.net/u014115673/article/details/53889971
  12. Python3 基础:filter和sorted函数 http://blog.csdn.net/u014115673/article/details/53896379
  13. Python3 基础:返回函数和匿名函数 http://blog.csdn.net/u014115673/article/details/53914556
  14. Python3 基础:装饰器和偏函数 http://blog.csdn.net/u014115673/article/details/53914849
  15. Python3 基础:模块 http://blog.csdn.net/u014115673/article/details/53925470
  16. Python3 基础:面向对象编程(上) http://blog.csdn.net/u014115673/article/details/53932650
  17. Python3 基础:面向对象编程(下) http://blog.csdn.net/u014115673/article/details/54287766
  18. Python3 基础:面向对象高级编程(上)http://blog.csdn.net/u014115673/article/details/54288048
  19. Python3 基础:面向对象高级编程(中)http://blog.csdn.net/u014115673/article/details/54288542
  20. 未完待续…

开发记录

  1. 开发:web.py(上)http://blog.csdn.net/u014115673/article/details/54291528
  2. 开发:Mac 安装 Mysql数据库 http://blog.csdn.net/u014115673/article/details/54314152
  3. Java&Python 中import的区别 http://blog.csdn.net/u014115673/article/details/54375432
  4. python:logging模块(上)http://blog.csdn.net/u014115673/article/details/54379312
  5. 5.