目录

Python - 遍历集合


遍历集合

您可以使用循环遍历设置的项目for环形:

示例

循环遍历集合并打印值:

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

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