首頁  >  文章  >  後端開發  >  python中的id()函數及讀取list的方法介紹(程式碼範例)

python中的id()函數及讀取list的方法介紹(程式碼範例)

不言
不言轉載
2019-02-25 10:50:473256瀏覽

這篇文章帶給大家的內容是關於python中的id()函數及讀取list的方法介紹(程式碼範例),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。

id(object)

Return the “identity” of an object. This is an integer (or long integer) which is guaranteed to be unique and constant for this object during its lifetime. Two objects with non-overlapping lifetimes may have the same id() value.
CPython implementation detail: This is the address of the object in memory.

說起這個函數就需要先了解pyhton的變數儲存機制了:
變數:是動態變量,不用事先宣告類型。

當我們寫:a = 'ABC'時,Python解釋器乾了兩件事情:

  1. 在記憶體中創建了一個'ABC'的字串;

  2. 在記憶體中建立了一個名為a的變量,並把它指向'ABC'。

id(a)讀取的是a的記憶體位址

程式範例

def addElement(_list):
    print(6,id(_list))
    _list.append(0)
    print(7,id(_list))
    return _list

if __name__=="__main__":
    list1=[1,2,3]
    print(1,id(list1))
    list2 = addElement(list1)
    print(2,list1)
    print(3,id(list1))
    print(4,list2)
    print(5,id(list2))

執行結果:

(1, 48757192L)
(6, 48757192L)
(7, 48757192L)
(2, [1, 2, 3, 0])
(3, 48757192L)
(4, [1, 2, 3, 0])
(5, 48757192L)

兩要點:

  1. return語句回傳後list1就已經變成其回傳值而不是原來的值

  2. ##自從定義後list1這個變數的本質就是一個記憶體盒子,傳到函數裡面的一直是這個變數本身,所以位址沒變,最後回傳的還是他,只是後面加了一個新值,而用a=b這種賦值方法後ab的記憶體位址是一致的。因此從頭到尾list1,list2,_list記憶體位址都沒變過

#

以上是python中的id()函數及讀取list的方法介紹(程式碼範例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除