I put a dict as the default value for an optional argument to a Python function, and pylint (using Sublime package) told me it was dangerous. Can someone explain why this is the case? And is a better alternative to use None instead?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
Let’s look at an example:
def f(value, key, hash={}):
hash[value] = key
return hash
print(f('a', 1))
print(f('b', 2))
Which you probably expect to output:
{'a': 1}
{'b': 2}
But actually outputs:
{'a': 1}
{'a': 1, 'b': 2}
Method 2
It’s dangerous only if your function will modify the argument. If you modify a default argument, it will persist until the next call, so your “empty” dict will start to contain values on calls other than the first one.
Yes, using None is both safe and conventional in such cases.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0