What is meant by“call by value” in python?
Answer / Jyoti Gupta
In Python, functions are called by reference. This means that the entire object, including any mutable data within it, is passed to the function, and changes made within the function will persist once the function returns.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is pass in Python?
Explain how can you access a module written in python from c?
How will you verify different flags at once?
What are metaclasses and what do we use them for?
Do you need classes in python?
Does python support database programming?
What do you understand of pep 8?
What python frameworks do you know?
What is the output of print str * 2 if str = 'hello world!'?
What is the difference between cpython and python?
Can I use python in linux?
“In Python, functions are first-class objects.” What do you infer from this?