A quick introduction to *args and **kwargs in Python!
Apr 11, 2021 · 2 min read · 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...
Join discussion