溫馨提示×

python怎么打印集合中的元素

小億
112
2024-03-20 11:35:08
欄目: 編程語言

要打印集合中的元素,可以使用for循環(huán)遍歷集合并打印每個元素。例如:

```python

my_set = {1, 2, 3, 4, 5}

for element in my_set:

print(element)

```

這將逐個打印集合中的每個元素:

```

1

2

3

4

5

```

0