A quick introduction to *args and **kwargs in Python!
Sometimes you might need to create a function with multiple parameters.
Let's say you need to create a function that adds an arbitrary amount of numbers. But beforehand, you don't know the number of parameters. How would you implement it?
Here is w...
chirath.hashnode.dev2 min read