|
所在平台: Udemy |
课程主页: https://www.udemy.com/course/learn-python-from-scratch-p/
课程评论:没有评论
课程名称:从零开始学习Python 课程概述:Python是一种受欢迎的编程语言,由Guido van Rossum于1991年创建并发布。它广泛用于网页开发(服务器端)、软件开发、数学和系统脚本等领域。 Python的应用:Python可以与软件协同工作以创建工作流程;在服务器上创建网页应用;连接数据库系统;读取和修改文件;处理大数据和执行复杂数学运算;快速原型设计或开发生产级软件。 为什么选择Python?Python支持多种平台(如Windows、Mac、Linux、Raspberry Pi等),并且具有类似于英语的简单语法,使得开发者能够用更少的代码行编写程序。Python采用解释器系统,可实现快速原型开发。它支持过程式、面向对象和函数式编程。 需要注意的是,我们将在本教程中使用最新的Python 3版本,尽管Python 2仍然受到一些用户的欢迎,仅限于安全更新。在本教程中,Python将在文本编辑器中编写,也可以使用集成开发环境(IDE),如Thonny、Pycharm、Netbeans或Eclipse,这些工具在管理大型Python文件时特别有用。 Python的语法与其他编程语言的比较:Python设计注重可读性,与英语和数学有相似之处。Python使用换行符结束命令,而其他编程语言通常使用分号或括号。Python依赖缩进和空白来定义作用域,例如循环、函数和类的作用域,这与其他编程语言使用大括号的方式不同。 该课程旨在帮助学习者掌握Python的基础知识,适合想要从零开始学习编程的人士。
Python is a popular programming language. It was created by Guido van Rossum and released in 1991. It is used for:web development (server-side),software development,mathematics,system scripting.What can Python do?Python can be used alongside software to create workflows.Python can be used on a server to create web applications.Python can connect to database systems. It can also read and modify files.Python can be used to handle big data and perform complex mathematics.Python can be used for rapid prototyping or production-ready software development.Why Python?Python works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc).Python has a simple syntax similar to the English language.Python has a syntax that allows developers to write programs with fewer lines than other programming languages.Python runs on an interpreter system, meaning that code can be executed as soon as it is written. This means that prototyping can be very quick.Python can be treated in a procedural way, an object-oriented way, or a functional way.Good to knowThe most recent major version of Python is Python 3, which we shall be using in this tutorial. However, Python 2, although not being updated with anything other than security updates, is still quite popular.In this tutorial, Python will be written in a text editor. It is possible to write Python in an Integrated Development Environment, such as Thonny, Pycharm, Netbeans, or Eclipse, which are particularly useful when managing larger collections of Python files.Python Syntax compared to other programming languagesPython was designed for readability and has some similarities to the English language with influence from mathematics.Python uses new lines to complete a command, unlike other programming languages, which often use semicolons or parentheses.Python relies on indentation, using whitespace, to define scopes, such as the scope of loops, functions, and classes. Other programming languages often use curly brackets for this purpose.