Login
Remember
Register
Ask a Question
How are arguments passed in Python? By value or by reference?
0
votes
asked
Oct 14, 2021
in
Python
by
rajeshsharma
How are arguments passed in Python? By value or by reference?
argument-pass
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 14, 2021
by
rajeshsharma
All of the Python is an object and all variables hold references to the object. The reference values are according to the functions; as a result, the value of the reference cannot be changed.
...