mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
9 lines
91 B
Python
9 lines
91 B
Python
x = [()]
|
|
x = [(a)]
|
|
x = [(a,)]
|
|
x = [(a)]
|
|
x = [(a,)]
|
|
x = [a, b]
|
|
x = [(a, b)]
|
|
x = [(a, b, c)]
|