You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
18 lines
183 B
Python
18 lines
183 B
Python
x = ()
|
|
x = a
|
|
x = a,
|
|
x = a, 2
|
|
x = a, 2,
|
|
x = a, 2, 3
|
|
x = a, 2, 3, 4
|
|
x = a, 2, 3, 4, 5
|
|
|
|
x = ()
|
|
x = (a)
|
|
x = (a,)
|
|
x = (a, 2)
|
|
x = (a, 2,)
|
|
x = (a, 2, 3)
|
|
x = (a, 2, 3, 4)
|
|
x = (a, 2, 3, 4, 5)
|