Monty @ The Python Coding Place @thepythoncodingplace.com · Mar 8

But you also need to decide how to deal with appending these arguments to the list `data`. You can either unpack the `args` and `kwargs` into separate objects, or keep them bundled together to show that they were passed together in a single function call. Let's go for the second option…

0 likes 1 replies

?

Replies

Monty @ The Python Coding Place · Mar 8

We're almost there, let's try this `store_arguments()` on another function instead of `print()` Let's try it on `max()`