标签:缩进 init 数学 print his 特定 pytho 函数 pps
函数
-函数是代码的一种组织形式
-函数应该能完成一项特定的工作,而且一般一个函数完成一项工作
-函数的使用:
函数使用需要先定义
使用函数,俗称调用
pps:1.只是定义的话不会执行
2.def关键字,后跟一个空格
3.函数名,自己定义,起名需要遵循命名规则,约定俗成,大驼峰命名只给类用
4.后面括号和冒号不能省略,括号内可以有参数
5.函数内所有代码缩进
example:
>>> def fun():
... print("hello world") #这是函数内容
...
>>> print("hello this is not a definition") #这是与def 平级的,不是函数的内容
hello this is not a definition
>>> fun () #这才是调用函数
hello world
>>>
标签:缩进 init 数学 print his 特定 pytho 函数 pps
原文地址:https://www.cnblogs.com/clairedandan/p/10847904.html