集合

1. 集合的特点


元素不能重复且无序!

因此,不支持下标索引访问!

 

 

2. 集合的常用操作


 

 

3. 练习


my_list = ['黑马程序员', '传智播客', '黑马程序员', '传智播客', 'itheima', 'itcast', 'itheima', 'itcast', 'best']
my_set = set()
for each in my_list:
    my_set.add(each)
print(my_set)

 

posted @ 2023-07-29 01:54  Peg_Wu  阅读(0)  评论(0编辑  收藏  举报