Python之「引用」

Python中有相似C語言的數組名的特性,叫作「引用」,本質上是變量的內存地址。這就比較容易理解了。python # reference.py print 'SimpleAssigment' shoplist=['apple','mango','carrot','banana'] mylist =shoplist del shoplist[0] print mylist,'is mylist' p
相關文章
相關標籤/搜索