列出 copy() 方法
copy() 方法用於複製一個列表,該方法用這個列表(當前/原始列表)調用並返回一個相同元素的列表。
用法:
list_name.copy()
參數:
- 它不接受任何參數。
返回值:
這個方法的返回類型是<class 'list'>
,它返回一個包含所有元素的列表。
範例1:
# Python List copy() Method with Example
# declaring the list
cars = ["Porsche", "Audi", "Lexus"]
# copying the list
x = cars.copy()
# printing the lists
print("cars:", cars)
print("x:", x)
輸出
cars: ['Porsche', 'Audi', 'Lexus'] x: ['Porsche', 'Audi', 'Lexus']
範例2:
# Python List copy() Method with Example
# declaring the lists
x = ["ABC", "XYZ", "PQR"]
y = ["PQR", "MNO", "YXZ"]
z = ["123", "456", "789"]
# printing the copies of the lists
print("copy of x:", x.copy())
print("copy of y:", y.copy())
print("copy of z:", z.copy())
輸出
copy of x: ['ABC', 'XYZ', 'PQR'] copy of y: ['PQR', 'MNO', 'YXZ'] copy of z: ['123', '456', '789']
相關用法
- Python List count()用法及代碼示例
- Python List clear()用法及代碼示例
- Python List remove()用法及代碼示例
- Python List pop()用法及代碼示例
- Python List index()用法及代碼示例
- Python List sort()用法及代碼示例
- Python List reverse()用法及代碼示例
- Python List extend()用法及代碼示例
- Python Lock acquire()用法及代碼示例
- Python Lock release()用法及代碼示例
- Python Lock locked()用法及代碼示例
- Python numpy.less()用法及代碼示例
- Python Sympy Permutation.list()用法及代碼示例
- Python Matplotlib.figure.Figure.subplots_adjust()用法及代碼示例
- Python numpy.tril()用法及代碼示例
- Python Matplotlib.pyplot.matshow()用法及代碼示例
- Python __file__用法及代碼示例
- Python Pandas Panel.add()用法及代碼示例
- Python Matplotlib.axis.Tick.get_window_extent()用法及代碼示例
- Python numpy.fromstring()用法及代碼示例
注:本文由純淨天空篩選整理自 Python List copy() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。