python3
不土豆吃土豆
这个作者很懒,什么都没留下…
展开
-
python基础入门----运算符
原文链接:https://www.programiz.com/python-programming/operatorsTable of ContentsWhat are operators in Python? Arithmetic Operators Comparison (Relational) Operators Logical (Boolean) Operators Bit...翻译 2019-02-28 21:45:33 · 328 阅读 · 0 评论 -
python基础入门----break和continue语句
原文链接:https://www.programiz.com/python-programming/break-continuePython break and continueIn this article, you will learn to use break and continue statements to alter the flow of a loop.Table of...翻译 2019-03-04 01:16:34 · 319 阅读 · 0 评论 -
python基础入门----pass语句
Python pass statementIn this article, you'll learn about pass statement. It is used as a placeholder for future implementation of functions, loops, etc.Table of ContentsWhat is pass statement in...翻译 2019-03-04 10:55:30 · 294 阅读 · 0 评论 -
python基础入门----函数
Python FunctionsIn this article, you'll learn about functions; what is a function, the syntax, components and types of a function. Also, you'll learn to create a function in Python.Table of Conten...翻译 2019-03-05 00:33:00 · 799 阅读 · 0 评论 -
Python基础入门----全局,局部和非局部变量
Python Global, Local and Nonlocal variablesIn this article, you’ll learn about Python Global Variable, Local Variable, Nonlocal Variable and where to use them.Table of ContentsGlobal Variable...翻译 2019-03-20 02:03:25 · 765 阅读 · 0 评论 -
python基础入门----模块
Python ModulesIn this article, you will learn to create and import custom modules in Python. Also, you will find different techniques to import and use custom and built-in modules in Python.Tab...翻译 2019-03-20 23:03:28 · 264 阅读 · 0 评论 -
Python基础入门----包
Python PackageIn this article, you'll learn to divide your code base into clean, efficient modules using Python packages. Also, you'll learn to import and use your own or third party packagesin your...翻译 2019-03-21 00:30:18 · 243 阅读 · 0 评论 -
Python基础入门----数字,类型转换和数学
Python Numbers, Type Conversion and MathematicsIn this article, you'll learn about the different numbers used in Python, how to convert from one data type to the other, and the mathematical operatio...翻译 2019-03-22 01:17:02 · 413 阅读 · 0 评论 -
Python基础入门----递归
Python RecursionIn this article, you will learn to create a recursive function; a function that calls itself.Table of ContentsWhat is recursion in Python? Python Recursive Function Advantag...翻译 2019-03-17 20:35:14 · 283 阅读 · 0 评论 -
Python基础入门----匿名/ Lambda函数
Python Anonymous/Lambda FunctionIn this article, you'll learn about the anonymous function, also known as lambda functions. You'll learn what is it, its syntax and how to use it (with examples)....翻译 2019-03-18 01:38:00 · 242 阅读 · 0 评论 -
python基础入门----while循环
Python while LoopTable of ContentsWhat is while loop in Python? Syntax of while Loop in Python Flowchart of while loop Example: Python while Loop while loop with elsewhile 循环表格内容什么是w...翻译 2019-03-04 00:27:32 · 757 阅读 · 0 评论 -
python翻译目录
原文链接:https://www.programiz.com/python-programmingPYTHON TUTORIAL Python Introduction Getting Started Keywords and Identifier Statements & Comments Python Variables Python Datatypes...翻译 2019-02-27 02:21:05 · 224 阅读 · 0 评论 -
python基础入门----标准输出,输入和导包
原文:https://www.programiz.com/python-programming/input-output-importPython Input, Output and ImportTable of ContentsPython Output Using print() function Output formatting Python Input Pytho...翻译 2019-02-27 12:52:17 · 711 阅读 · 0 评论 -
python基础入门----数据类型
Python Data TypesIn this tutorial, you will learn about different data types you can use in Python.Table of ContentsData Types in Python Python Numbers Python List Python Tuple Python St...翻译 2019-02-25 01:31:50 · 448 阅读 · 0 评论 -
python基础入门----命名空间和变量作用域
原文链接:https://www.programiz.com/python-programming/namespaceTable of ContentsWhat is Name in Python? What is a Namespace in Python? Python Variable Scope Example of Scope and Namespace in Python...翻译 2019-03-01 20:59:30 · 347 阅读 · 0 评论 -
python基本入门----函数的参数
原文链接:https://www.programiz.com/python-programming/function-argumentPython Function ArgumentsIn Python, you can define a function that takes variable number of arguments. You will learn to define s...翻译 2019-03-06 01:01:25 · 2398 阅读 · 0 评论 -
python基础入门----条件控制
原文链接:https://www.programiz.com/python-programming/if-elif-elsePython if...else StatementTable of ContentsWhat are if...else statement in Python? Python if Statement Syntax Python if Statemen...翻译 2019-03-03 01:16:06 · 230 阅读 · 0 评论 -
python基础入门----for循环
原文链接:https://www.programiz.com/python-programming/for-loopPython for LoopTable of ContentsWhat is for loop in Python? Syntax of for Loop Flowchart of for loop Example: Python for Loop T...翻译 2019-03-03 17:53:50 · 421 阅读 · 0 评论 -
python基础入门----类型转换
原文链接:https://www.programiz.com/python-programming/type-conversion-and-castingTable of ContentsType Conversion Implicit Type Conversion Explicit Type Conversion Key Points to RememberBefore lea...翻译 2019-02-27 01:46:11 · 307 阅读 · 0 评论