Google News
logo
Python - Interview Questions
What is “Call by Value” in Python?
In call-by-value, the argument whether an expression or a value gets bound to the respective variable in the function.
 
Python will treat that variable as local in the function-level scope. Any changes made to that variable will remain local and will not reflect outside the function.
Advertisement