How Python Handles Unknown Arguments: A Deep Dive into *args and **kwargs
If you've spent any time reading Python code, you've probably come across function signatures that look like this:
def some_function(*args, **kwargs):
pass
And wondered, what are those asterisks
blog.moussaamzat.dev10 min read