micropython/tests/bytecode/mp-tests/list1.py

9 wiersze
116 B
Python

x = []
x = [1]
x = [1,] # not implemented
x = [1, 2]
x = [1, 2,]
x = [1, 2, 3]
x = [1, 2, 3, 4]
x = [1, 2, 3, 4, 5]