列出 clear() 方法
clear() 方法用於清除列表,即用於從列表中刪除所有元素。
用法:
list_name.clear()
參數:
- 它不接受任何參數。
返回值:
這個方法的返回類型是<class 'NoneType'>
,它什麽都不返回。
範例1:
# declaring a list
cities = ["New Delhi", "Mumbai", "Banglore"]
# printing elements before clearing the list
print("Before clear() method...")
print("cities = ", cities)
# clearing the list
cities.clear()
# printing elements after clearing the list
print("After clear() method...")
print("cities = ", cities)
輸出
Before clear() method... cities = ['New Delhi', 'Mumbai', 'Banglore'] After clear() method... cities = []
範例2:
# declaring the lists
x = ["ABC", "XYZ", "PQR"]
y = ["PQR", "MNO", "YXZ"]
z = ["123", "456", "789"]
# printing sets before clearing the list
print("Before clear() method...")
print("x:", x)
print("y:", y)
print("z:", z)
# clearing the lists
x.clear()
y.clear()
z.clear()
# printing sets after clearing the list
print("After clear() method...")
print("x:", x)
print("y:", y)
print("z:", z)
輸出
Before clear() method... x: ['ABC', 'XYZ', 'PQR'] y: ['PQR', 'MNO', 'YXZ'] z: ['123', '456', '789'] After clear() method... x: [] y: [] z: []
相關用法
- Python List count()用法及代碼示例
- Python List copy()用法及代碼示例
- 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 clear() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。