Files
RustPython/tests/snippets/list.py
2018-10-28 20:16:24 +01:00

12 lines
148 B
Python

x = [1, 2, 3]
assert x[0] == 1
assert x[1] == 2
# assert x[7]
y = [2, *x]
assert y == [2, 1, 2, 3]
y.extend(x)
assert y == [2, 1, 2, 3, 1, 2, 3]