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

验证python中“=”对对象的引用,点型案例

时间:2018-08-03 11:28:34      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:images   img   ado   water   print   分享   shadow   添加   app   

python添加[],h[0]添加10,h添加10 验证python中"="对对象的引用

h = [[]] * 5

print(h)

h[0].append(10)

print(h)

h[0].append(10)

print(h)

h.append(20)

print(h)

运行结果如下:
技术分享图片

验证python中“=”对对象的引用,点型案例

标签:images   img   ado   water   print   分享   shadow   添加   app   

原文地址:http://blog.51cto.com/13241097/2153959

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