在本教程中,我們將借助示例了解 Python List clear() 方法。
clear()
方法從列表中刪除所有項目。
示例
prime_numbers = [2, 3, 5, 7, 9, 11]
# remove all elements
prime_numbers.clear()
# Updated prime_numbers List
print('List after clear():', prime_numbers)
# Output: List after clear(): []
用法:
用法:
list.clear()
參數:
clear()
方法不接受任何參數。
返回:
clear()
方法僅清空給定的 list 。它不返回任何值。
示例 1:clear() 方法的用法
# Defining a list
list = [{1, 2}, ('a'), ['1.1', '2.2']]
# clearing the list
list.clear()
print('List:', list)
輸出
List: []
注意:如果您使用的是 Python 2 或 Python 3.2 及更低版本,則無法使用clear()
方法。您可以改用 del 運算符。
示例 2:使用 del 清空列表
# Defining a list
list = [{1, 2}, ('a'), ['1.1', '2.2']]
# clearing the list
del list[:]
print('List:', list)
輸出
List: []
訪問 this page 以了解 del
運算符在 Python 中的工作原理。
相關用法
- Python List cmp()用法及代碼示例
- Python List count()用法及代碼示例
- Python List copy()用法及代碼示例
- Python List remove()用法及代碼示例
- Python List insert()用法及代碼示例
- Python List reverse()用法及代碼示例
- Python List append()用法及代碼示例
- Python List pop()用法及代碼示例
- Python List index()用法及代碼示例
- Python List sort()用法及代碼示例
- Python List list()用法及代碼示例
- Python List max()用法及代碼示例
- Python List len()用法及代碼示例
- Python List min()用法及代碼示例
- Python List extend()用法及代碼示例
- Python Lock acquire()用法及代碼示例
- Python Lock release()用法及代碼示例
- Python Lock locked()用法及代碼示例
- Python torch.distributed.rpc.rpc_async用法及代碼示例
- Python torch.nn.InstanceNorm3d用法及代碼示例
注:本文由純淨天空篩選整理自 Python List clear()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。