热门
set() - 创建一个集合。集合是一个无序的不重复元素序列。
my_set=set([1, 2, 2, 3]) # 从列表创建集合,自动去重print(my_set) # 输出:{1, 2, 3}