Avoid these Gotchas/Errors related to parameters and arguments in Python

We will discuss a couple of Errors and One Gotcha related to Python arguments and parameters.

Rahul Banerjee
Towards Data Science
4 min readMay 2, 2021

--

Photo by Maxwell Nelson on Unsplash

Before moving on, let’s discuss a few terms. Check out the code snippet below. It’s a simple function that prints the sum of its parameters.

--

--