Python中的set
函数具有多种用途,以下是一些主要的应用场景和技巧:
{}
或set()
函数可以创建一个集合。例如:# 使用大括号创建集合
my_set = {1, 2, 3, 4, 5}
# 使用set()函数创建集合
another_set = set([1, 2, 3, 4, 5])
my_list = [1, 2, 2, 3, 4, 4, 5]
unique_list = list(set(my_list))
in
关键字检查一个元素是否存在于集合中。例如:if 3 in my_set:
print("3 is in the set")
set1 = {1, 2, 3}
set2 = {2, 3, 4}
# 并集
union_set = set1 | set2
print(union_set) # 输出: {1, 2, 3, 4}
# 交集
intersection_set = set1 & set2
print(intersection_set) # 输出: {2, 3}
# 差集
difference_set = set1 - set2
print(difference_set) # 输出: {1}
# 对称差集
symmetric_difference_set = set1 ^ set2
print(symmetric_difference_set) # 输出: {1, 4}
even_numbers = {x for x in range(1, 11) if x % 2 == 0}
print(even_numbers) # 输出: {2, 4, 6, 8, 10}
my_dict = {set([1, 2, 3]): "one two three", set([4, 5, 6]): "four five six"}
print(my_dict)
for
循环遍历集合中的元素。例如:for item in my_set:
print(item)
len()
函数可以获取集合的大小(即元素的数量)。例如:print(len(my_set)) # 输出: 5
set()
函数创建一个空集,或使用set.add()
方法向集合中添加元素(但空集本身不能添加元素)。例如:empty_set = set()
another_set = set([1, 2, 3])
empty_set.add(4) # 这将引发AttributeError,因为空集没有add方法
my_set = {1, 2, 3}
new_set = {x + 1 for x in my_set} # 创建一个新的集合,其中包含原集合中每个元素加1的结果
print(new_set) # 输出: {2, 3, 4}
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。