目录

Python - 访问集合项


访问项目

您无法通过引用索引或键来访问集合中的项目。

但是您可以使用循环遍历设置的项目for循环,或者询问指定的值是否存在于集合中,方法是使用in关键字。

示例

循环遍历集合并打印值:

thisset = {"apple", "banana", "cherry"}

for x in thisset:
  print(x)
亲自试一试 »

示例

检查集合中是否存在"banana":

thisset = {"apple", "banana", "cherry"}

print("banana" in thisset)
亲自试一试 »

更改项目

创建集合后,您无法更改其项目,但可以添加新项目。