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