Files
RustPython/vm/tests/list.py
2018-06-06 23:30:48 +02:00

5 lines
60 B
Python

x = [1,2,3]
assert x[0] == 1
assert x[1] == 2
# assert x[7]