You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README_ENG.md 1.9 kB

123456789101112131415161718192021222324252627282930313233343536
  1. # 简明Python教程 (90分钟学会Python)
  2. Python 是一门上手简单、功能强大、通用型的脚本编程语言。Python 类库极其丰富,这使得 Python 几乎无所不能,网站开发、软件开发、大数据分析、网络爬虫、机器学习等都不在话下。Python最主要的优点是使用人类的思考方式来完成大部分的工作,大多数时候使用封装好的库快速完成给定的任务,虽然可能执行的效率不一定很高,但是极大的缩短了程序设计、编写、调试的时间,因此非常适合快速试错。
  3. 本教程来自[IPython Notebooks to learn Python](https://github.com/rajathkmp/Python-Lectures),将其中部分示例代码转化成Python3。关于Python的按照可以自行去网络上查找相关的资料,或者参考[安装Python环境](../tips/InstallPython.md)。
  4. ## 内容
  5. 0. [Install Python](../tips/InstallPython.md)
  6. 1. [Basics](1_Basics.ipynb)
  7. - Why Python, Zen of Python
  8. - Variables, Operators, Built-in functions
  9. 2. [Print statement](2_Print_Statement.ipynb)
  10. - Tips of print
  11. 3. [Data structure - 1](3_Data_Structure_1.ipynb)
  12. - Lists, Tuples, Sets
  13. 4. [Data structure - 2](4_Data_Structure_2.ipynb)
  14. - Strings, Dictionaries
  15. 5. [Control flow](5_Control_Flow.ipynb)
  16. - if, else, elif, for, while, break, continue
  17. 6. [Functions](6_Function.ipynb)
  18. - Function define, return, arguments
  19. - Gloabl and local variables
  20. - Lambda functions
  21. 7. [Class](7_Class.ipynb)
  22. - Class define
  23. - Inheritance
  24. ## References
  25. * [安装Python环境](../tips/InstallPython.md)
  26. * [IPython Notebooks to learn Python](https://github.com/rajathkmp/Python-Lectures)
  27. * [廖雪峰的Python教程](https://www.liaoxuefeng.com/wiki/1016959663602400)
  28. * [智能系统实验室入门教程-Python](https://gitee.com/pi-lab/SummerCamp/tree/master/python)
  29. * [Python tips](../tips/python)
  30. * [Get Started with Python](Python.pdf)

机器学习越来越多应用到飞行器、机器人等领域,其目的是利用计算机实现类似人类的智能,从而实现装备的智能化与无人化。本课程旨在引导学生掌握机器学习的基本知识、典型方法与技术,通过具体的应用案例激发学生对该学科的兴趣,鼓励学生能够从人工智能的角度来分析、解决飞行器、机器人所面临的问题和挑战。本课程主要内容包括Python编程基础,机器学习模型,无监督学习、监督学习、深度学习基础知识与实现,并学习如何利用机器学习解决实际问题,从而全面提升自我的《综合能力》。