Python 检查元组项是否存在
检查元组项是否存在
要确定元组中是否存在指定项,请使用 in
关键字:
实例
检查元组中是否存在"apple":
thistuple = ("apple", "banana", "cherry")
if "apple" in thistuple:
print("Yes, 'apple' is in the fruits tuple")
亲自试一试 »
要确定元组中是否存在指定项,请使用 in
关键字:
检查元组中是否存在"apple":
thistuple = ("apple", "banana", "cherry")
if "apple" in thistuple:
print("Yes, 'apple' is in the fruits tuple")
亲自试一试 »
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。