mirror of
https://github.com/micropython/micropython.git
synced 2025-09-04 17:00:30 +02:00
9 lines
116 B
Python
9 lines
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]
|