Python List clear() Python List extend() Python List copy() Python List clear() 在本教程中,我们将了解Python List的 clear 方法[。Python Listclear 方法用于从列表中删除所有项目。 Python List 清晰示例 您可以简单地使用 clear 方法从列表中删除所有项目。Python extend 不返回任何内容,但它实际上更新了原始列表。 让我们借助简单的例子来理解这一点。 l=[1,2,3,4] print("List before clear:",l) l.clear() print("List after clear:",l) 输出: List before clear: [1, 2, 3, 4] List after clear: [] 如果您使用的是 python 3.2 或更低版本,您将不会在列表中找到 clear 方法。在这种情况下,您需要使用 del 运算符。 l=[1,2,3,4,5] print("List before clear:",l) del l[:] print("List after clear:",l) 输出: List before clear: [1, 2, 3, 4, 5] List after clear: [] 这就是 Python List clear 方法的全部内容。 Python List extend() Python List copy()