Python 列表/数组方法
从 fruits 列表删除所有元素:
fruits = ['apple', 'banana', 'cherry', 'orange'] fruits.clear()
运行实例
clear() 方法从列表中删除所有元素。
list.clear()
无参数。