|
|
|
|
|
by throwaway91919
3819 days ago
|
|
Can you (or someone) clarify what problem you're talking about? This seems to work as expected for me: def foo(x=[]):
sum = 0
for a in x: sum += a
return sum
print foo([3,5]) # 8
print foo(x=[3]) # 3
print foo([]) # 0
print foo() # 0
Is it the fact that kwargs are required to have defaults? Or what? |
|