Python/gloss python check if list item exists
来自菜鸟教程
<languages />
Python检查列表项是否存在
检查列表项是否存在
要确定列表中是否存在指定的项目,请使用
in
关键词:
例
检查列表中是否存在“苹果”:
thislist = ["apple", "banana", "cherry"] if "apple" in thislist: print("Yes, 'apple' is in the fruits list")