summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/set_copy.py
blob: 2ea308b0db4c36142105eeb1764f034d790257d3 (plain) (blame)
1
2
3
4
5
6
7
8
s = {1, 2, 3, 4}
t = s.copy()
s.add(5)
t.add(7)
for i in s, t:
    l = list(i)
    l.sort()
    print(l)