1、 集合元素遍历
不能通过引用索引或键来访问集合中的项目。
但是,可以使用for
循环遍历设置项,或者通过使用in
关键字询问集合中是否存在指定值。
例如:
遍历集合,打印输出值:
thisset = {"c", "java", "python"}
for x in thisset: print(x)
例如:
判断集合中是否存在"python":
thisset = {"c", "java", "python"}
print("c" in thisset)
相关文档:
不能通过引用索引或键来访问集合中的项目。
但是,可以使用for
循环遍历设置项,或者通过使用in
关键字询问集合中是否存在指定值。
例如:
遍历集合,打印输出值:
thisset = {"c", "java", "python"}
for x in thisset: print(x)
例如:
判断集合中是否存在"python":
thisset = {"c", "java", "python"}
print("c" in thisset)
相关文档: