summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/list_copy.py
blob: bc450782e35c6a55ac462ed5b2381e6432c7a2f2 (plain) (blame)
1
2
3
4
5
6
7
# list copy tests
a = [1, 2, []]
b = a.copy()
a[-1].append(1)
a.append(4)
print(a)
print(b)