summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/set_intersection.py
blob: 73804c840d61c5598e49b5e55569200074418317 (plain) (blame)
1
2
3
4
5
6
7
s = {1, 2, 3, 4}
print(sorted(s))
print(sorted(s.intersection({1, 3})))
print(sorted(s.intersection([3, 4])))

print(s.intersection_update([1]))
print(sorted(s))