|
所在平台: Udemy |
课程主页: https://www.udemy.com/course/python-programming-python-basics-for-beginners-guide/
课程评论:没有评论
**Coursera 课程总结:Python 编程入门指南** 本课程旨在帮助初学者掌握 Python 编程语言,这门广泛应用于网站开发、软件构建、任务自动化和数据分析的通用型语言。Python 以其高效的开发流程著称,无需编译即可快速实现“编辑-测试-调试”的循环。 **课程主要内容包括:** * Python 介绍 * 第一个 Python 程序 * 注释、变量 * 数据类型、运算符 * 类型转换 * 输入与语句 * 字符串、列表 * 字典 * 条件语句 (if/else) * 循环 (for, while) * 控制语句 (break, continue) 通过学习这些基础知识,您将能够以一种有趣且实用的方式提升职业技能和知识水平。
Python is a computer programming language often used to build websites and software, automate tasks, and conduct data analysis. Python is a general-purpose language, meaning it can be used to create a variety of different programs and isn't specialised for any specific problems. Often, programmers fall in love with Python because of the increased productivity it provides. Since there is no compilation step, the edit-test-debug cycle is incredibly fast. Debugging Python programs is easy: a bug or bad input will never cause a segmentation fault. Instead, when the interpreter discovers an error, it raises an exception. When the program doesn't catch the exception, the interpreter prints a stack trace. A source level debugger allows inspection of local and global variables, evaluation of arbitrary expressions, setting breakpoints, stepping through the code a line at a time, and so on. The debugger is written in Python itself, testifying to Python's introspective power. On the other hand, often the quickest way to debug a program is to add a few print statements to the source: the fast edit-test-debug cycle makes this simple approach very effective. The Main topic that we will cover in this course are:We cover a wide variety of topics, including:What is PythonPrinting out our first python programComments VariablesDatatypesOperatorsTypecastingInputs StatementsStringsListsDictionaryConditional StatementsFor LoopsWhile LoopsBreak StatementContinue StatementSo what are you waiting for? Learn Python in a way that will advance your career and increase your knowledge, all in a fun and practical way!