python函数

Posted daju

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python函数相关的知识,希望对你有一定的参考价值。

参数陷阱:
1 def defult_param(a,l = []):
2     l.append(a)
3     print(l)
4 
5 defult_param(alex)
6 defult_param(egon)

列表l不会在函数回收后清空

技术分享图片

以上是关于python函数的主要内容,如果未能解决你的问题,请参考以下文章

Python的函数有哪些?

Python 函数声明和调用

python基础9 -----python内置函数

Python2 与 Python3 的 map 函数

05python 的内置函数以及匿名函数(python函数)

python 8个常用内置函数解说