8 lines
92 B
Python
8 lines
92 B
Python
|
# list copy tests
|
||
|
a = [1, 2, []]
|
||
|
b = a.copy()
|
||
|
a[-1].append(1)
|
||
|
a.append(4)
|
||
|
print(a)
|
||
|
print(b)
|