The code in add.py is inefficient because we're adding two variables and not storing the value to another variable.
- Why this issue need to be fixed
If we need the value of two variables added then we need to store it to another variable. Line number 3 is either wasting the memory or if need that then we need to store it.
To reproduce the error we need to open the file named add.py. In that we need to fix line number 3.
The code in add.py is inefficient because we're adding two variables and not storing the value to another variable.
If we need the value of two variables added then we need to store it to another variable. Line number 3 is either wasting the memory or if need that then we need to store it.
To reproduce the error we need to open the file named add.py. In that we need to fix line number 3.