mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
9 lines
143 B
Python
9 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]
|