Python150题day07

1.5集合练习题

集合间的运算

lst1 = [1, 2, 3, 5, 6, 3, 2]

lst2 = [2, 5, 7, 9]

  • 哪些整数既在Ist1中,也在Ist2中
  • 哪些整数在Ist1中,不在Ist2中
  • 两个列表一共有哪些整数

虽然题目问的是两个列表之间的问题,但是用列表解答的效率很低,所以应该用集合

lst1 = [1, 2, 3, 5, 6, 3, 2]

lst2 = [2, 5, 7, 9]

set1 = set(lst1)

set2 = set(lst2)

# 哪些整数既在lst1中,也在lst2中

print(set1.intersection(set2))

# 哪些整数在lst1中,不在lst2中

print(set1.difference(set2))

# 两个列表⼀共有哪些整数

print(set1.union(set2)

你可能感兴趣的:(Python150题,python)