What is meant by“call by value” in python?



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

Post New Answer

More Python Interview Questions

What is pass in Python?

1 Answers  


Explain how can you access a module written in python from c?

1 Answers  


How will you verify different flags at once?

1 Answers  


What are metaclasses and what do we use them for?

1 Answers  


Do you need classes in python?

1 Answers  


Does python support database programming?

1 Answers  


What do you understand of pep 8?

1 Answers  


What python frameworks do you know?

1 Answers  


What is the output of print str * 2 if str = 'hello world!'?

1 Answers  


What is the difference between cpython and python?

1 Answers  


Can I use python in linux?

1 Answers  


“In Python, functions are first-class objects.” What do you infer from this?

2 Answers  


Categories