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