1、判断集合中是否存在指定元素
要确定集合中是否存在指定元素,使用in
关键字:
例如:
判断集合中是否存在“python”:
thisset = {"c", "java", "python"}
if "python" in thisset:
print("python是集合中的元素")
相关文档:
要确定集合中是否存在指定元素,使用in
关键字:
例如:
判断集合中是否存在“python”:
thisset = {"c", "java", "python"}
if "python" in thisset:
print("python是集合中的元素")
相关文档: