Python/gloss python check if set item exists
来自菜鸟教程
<languages />
Python检查集中是否存在项目
检查项目是否存在于集合中
要确定集合中是否存在指定的项目,请使用
in
关键词:
例
检查集合中是否存在“苹果”:
thisset = {"apple", "banana", "cherry"} if "apple" in thisset: print("Yes, 'apple' is in this set")