在本教程中,我们将借助示例了解 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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。