主要用到…列表名字.remove(要删的数据)… fruits = ['苹果', '草莓', '香蕉', '梨', '百香果'] fruits.remove("草莓") print(fruits) fruits.