remove() 删除第一个匹配的值
del按索引删除元素
pop() 按索引删除一个元素并返回该元素
用clear()方法,清空列表的元素。(杯子还在,水倒空了)
用del list 语句,销毁整个列表。(杯子和水都没有了)