python集合set遍历
时间: 2024-01-31 13:11:06 浏览: 80
Python通过递归遍历出集合中所有元素的方法
在Python中,可以使用for循环来遍历集合(set)中的元素。下面是两种遍历集合的方法:
方法一:使用for循环遍历集合
```python
my_set = {1, 2, 3, 4, 5}
for element in my_set:
print(element)
```
输出:
```
1
2
3
4
5
```
方法二:将集合转换为列表后再进行遍历
```python
my_set = {1, 2, 3, 4, 5}
for element in list(my_set):
print(element)
```
输出:
```
1
2
3
4
5
```
需要注意的是,集合是无序的,所以遍历集合的顺序是不确定的。
阅读全文