Sometimes it seems natural to have a default parameter which is an empty list. However, Python produces unexpected behavior in these situations.
For example, consider this function:
def my_func(working_list=[]): working_list.append("a") print(working_list)
The first time it is called, the default will work, but calls after that will update the existing list (with one "a" each call) and print the updated version.
How can I fix the function so that, if it is called repeatedly without an explicit argument, a new empty list is used each time?
The docs say you should use
Noneas the default and explicitly test for it in the body of the function.