Files
TencentOS-tiny/components/language/micropython/tests/basics/list_copy.py
2022-09-29 12:10:37 +08:00

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)