Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the differences between value passing and reference passing in python

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article is about the difference between value passing and reference passing in python. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Difference

1. Value passing applies to arguments of immutable types, and reference passing applies to mutable types.

2. When the value of the function parameter is passed, if the parameter changes, it will not affect the value of the parameter. When the reference is passed, the value of the parameter is changed, and the value of the parameter is also changed.

Example

Def param_test (obj): obj + = obj print ('parameter value is:', obj) print ('* value transfer *') a = 'programmer Feige' print ('a) param_test (a) print ('argument value is:', a) print ("* reference transfer *") b = [1,2,3] print ('b value is:' B) param_test (b) print ('the value of the argument is:', b) Thank you for reading! This is the end of the article on "what is the difference between python value passing and reference passing". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it out for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report