Files
Learn-Python-Programming-Th…/ch04/parameters.defaults.mutable.no.trap.py
T
adii1823 ee641c189f ch04
2021-10-28 17:37:54 +05:30

6 lines
132 B
Python

# parameters.defaults.mutable.no.trap.py
def func(a=None):
if a is None:
a = []
# do whatever you want with `a` ...