函数
定义函数
使用def
关键字来定义函数,通过return
关键字来返回一个值,举个栗子:
1
2
3
4
5
def fac(num): # 阶乘,实际上Python的math模块中有factorial函数,这里仅做演示
result = 1
for n in range(1, num + 1):
result *= n
return result
- Python 函数与其他语言的区别在于,在Python中,函数的参数可以有默认值,也支持使用可变参数,
所以Python并不需要像其他语言一样支持函数的重载,因为我们在定义一个函数的时候可以让它有多种不同的使用方式(听不懂) - 如果在调用函数的时候,没有传入对应参数的值,将使用该参数的默认值(如果有的话)
模块
由于Python没有函数重载的概念,那么后面的定义会覆盖之前的定义,也就意味着两个函数同名函数实际上只有一个是存在的。
1
2
3
4
5
6
7
8
def foo():
print('hello, world!')
def foo():
print('goodbye, world!')
# 下面的代码会输出什么呢?
foo() # goodbye, world!
使用模块管理函数
不是hin懂,以后再看。前往 课件.
新的代码书写方式
有了函数的概念,我们今后将以下面的格式书写代码。
1
2
3
4
5
6
7
def main():
# Todo: Add your code here
pass
if __name__ == '__main__':
main()
References
Author: Mike Lyou
Link: https://blog.mikelyou.com/2020/01/02/python-learning-05-function-module/
Liscense: Copyright Statement: This python learning series are posted only for personal studies and communication. The whole series are not allowed to be reproduced unles otherwise indicated. I do not own copyright of some of the content. If any post accidentally infringes your copyright, it will be removed shortly after being informed. View python-learning-readme for more information.