0 votes
in Python by
Can you please explain what is “Call by Value” in Python Language?

1 Answer

0 votes
by

In call-by-value, the argument whether an expression or a value gets bound to the respective variable in the function.

Python Language 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.

Related questions

0 votes
asked Aug 30, 2020 in Python by sharadyadav1986
0 votes
asked Aug 30, 2020 in Python by sharadyadav1986
...