标签:def 没有 传递 strong int lis 传参 元组 col
def test(c): c.append("hello world") print(c,id(c)) return list = [1,2] test(list) print(list,id(list))
def test2(p): p = "i in test2" print(p,id(p)) str = "hello word" test2(str) print(str,id(str))
标签:def 没有 传递 strong int lis 传参 元组 col
原文地址:http://www.cnblogs.com/wenwei-blog/p/7531798.html