首頁 >後端開發 >Python教學 >如何在 Python 中正確深度複製列表?

如何在 Python 中正確深度複製列表?

Patricia Arquette
Patricia Arquette原創
2025-01-04 02:55:38691瀏覽

How to Properly Deep Copy a List in Python?

如何深度複製清單?

嘗試建立列表的深度複製時,避免使用列表( ) 建構子。雖然 list() 可能會產生不同的列表,但它僅執行淺複製,保留對原始列表元素的參考。因此,對新清單所做的任何修改也會影響原始清單。

解決方案:使用 copy.deepcopy() 進行深度複製

對於真正的深度複製,副本必須使用.deepcopy()函數。此函數遞歸克隆列表中的所有元素,確保新列表獨立於原始列表。

範例:

import copy

# Original list
E0 = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]

# Shallow copy
E0_copy1 = list(E0)

# Deep copy
E0_copy2 = copy.deepcopy(E0)

# Modify shallow copy
E0_copy1[0][0] = 0

# Observe that changes to the shallow copy also affect the original
print(E0)  # Output: [[0, 2, 3], [4, 5, 6], [7, 8, 9]]

# Modify deep copy
E0_copy2[1][1] = 0

# Note that changes to the deep copy do not affect the original
print(E0)  # Output: [[0, 2, 3], [4, 5, 6], [7, 8, 9]]

說明:

list() 透過引用原始元素來初始化一個新清單。因此,對副本所做的任何更改都會傳播到原始清單。

copy.deepcopy() 另一方面,會建立清單中所有嵌套元素的副本,從而產生完全獨立的副本。深拷貝的修改不會影響原始清單。

以上是如何在 Python 中正確深度複製列表?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn