在Python中使用可变类型作为默认参数有什么含义?
可能重复:
为什么“可变默认参数修复”语法如此丑陋,请求python newbie
最不惊讶的是python:可变的默认参数
这是一个例子。
def list_as_default(arg = []):
pass
来自:http://www.network-theory.co.uk/docs/pytut/DefaultArgumentValues.html
默认值只计算一次。 当默认值是可变对象(如列表,字典或大多数类的实例)时,这会有所不同。 例如,以下函数会累积在后续调用中传递给它的参数:
def f(a, L=[]):
L.append(a)
return L
print f(1)
print f(2)
print f(3)
这将打印
[1]
[1, 2]
[1, 2, 3]
如果你不想在后续调用之间共享默认值,你可以这样写:
def f(a, L=None):
if L is None:
L = []
L.append(a)
return L
链接地址: http://www.djcxy.com/p/4877.html
上一篇: What are the implications of using mutable types as default arguments in Python?