要确定列表中是否存在指定的项目,请使用以下关键字:in检查列表中是否存在“apple”:fruitlist = ["apple", "banana", "orange"]if "apple" in fruitlist : print("苹果在列表中")