Skip to content

Latest commit

 

History

History
72 lines (55 loc) · 3.56 KB

File metadata and controls

72 lines (55 loc) · 3.56 KB

简明Python教程 (90分钟学会Python)

Python 是一门上手简单、功能强大、通用型的脚本编程语言。

  • Python 类库丰富,这使得 Python 几乎无所不能,网站开发、软件开发、大数据分析、网络爬虫、机器学习等都不在话下;
  • Python最主要的优点是使用人类的思考方式来编写程序,大多数情况下使用封装好的库能够快速完成给定的任务,虽然执行的效率不一定很高,但是极大的缩短了程序设计、编写、调试的时间,因此非常适合快速学习、尝试、试错。

关于Python的安装可以参考《安装Python环境》,或者自行去网络上查找相关的资料。

为方便大家更好地学习并掌握Python,本教程配套《90分钟学会Python-在线视频》,请观看学习。

学习Python最好的方式是编程练习与小项目,请大家认真完成Python编程练习题

learn python

内容

  1. Install Python
  2. IPython & Jupyter Notebook
  3. Basics
    • Why Python, Zen of Python
    • Variables, Operators, Built-in functions
  4. Print statement
    • Tips of print
  5. Data structure - 1
    • Lists, Tuples, Sets
  6. Data structure - 2
    • Strings, Dictionaries
  7. Control flow
    • if, else, elif, for, while, break, continue
  8. Functions
    • Function define, return, arguments
    • Gloabl and local variables
    • Lambda functions
  9. Class
    • Class define
    • Inheritance

参考资料

视频教程

视频讲解

教程

练习题