码迷,mamicode.com
首页 > 其他好文 > 详细

11 函数参数传递

时间:2020-06-09 23:20:09      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:int   bsp   结果   color   address   函数   res   add   style   

a=10
print("%d address is %d" % (a,id(a)))

def fun(num):
    print("%d address is %d" % (num,id(num)))

fun(a)

运行结果:
10 address is 140706134913584
10 address is 140706134913584


实参a 传递给num 的是地址, 都是对10的引用

 

11 函数参数传递

标签:int   bsp   结果   color   address   函数   res   add   style   

原文地址:https://www.cnblogs.com/abel2020/p/13081511.html

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