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