0
Python err??? why??
def paker(name=None, **kwargs): print(kwargs) def unpacker(first_name=None, last_name=None ): if first_name and last_name: packer(name="kenneth", num=42, spanish_inquisition=none)
2 Respostas
+ 8
1: You definded "paker" function but you called "packer"
2: You didn't indent after if
3: none -> None