实例
从 fruits 列表删除所有元素:
fruits = ['apple', 'banana', 'cherry', 'orange'] fruits.clear()
定义和用法
clear() 方法从列表中删除所有元素。
语法
list.clear()
参数值
无参数。