码迷,mamicode.com
首页 > 编程语言 > 详细

Python引用传值总结

时间:2016-08-24 12:48:37      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

Python函数的参数传值使用的是引用传值,也就是说传的是参数的内存地址值,因此在函数中改变参数的值,函数外也会改变。

这里需要注意的是如果传的参数类型是不可改变的,如String类型、元组类型,函数内如需改变参数的值,则相当于重新新建了一个对象。

# 添加了一个string类型的元素添加到末尾

def ChangeList(lis):
    lis.append(‘hello i am the addone‘)
    print lis
    return

lis = [1, 2, 3]
ChangeList(lis)
print lis

得到的结果是:

[1,2,3, ‘hello i am the addone‘]

[1,2, 3,‘hello i am the addone‘]

def ChangeString(string):
    string = ‘i changed as this‘
    print string
    return

string = ‘hello world‘
ChangeString(string)
print string

String是不可改变的类型,得到的结果是:

i changed as this

hello world

  

  

Python引用传值总结

标签:

原文地址:http://www.cnblogs.com/6tian/p/5802328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!