Files
Pyarmor-Static-Unpack-1shot/tests/input/list_extend.py
2021-10-07 02:02:00 -04:00

10 lines
143 B
Python

a = [1, 2, 3]
b = ['4', 5, 6]
c = [7, (8, 9, 10)]
d = [None]
e = [('a', 'b', 'c')]
f = [a, b]
g = []
h = [1, 2, [3, 4]]
a = [None, None, None]