You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
16 lines
177 B
Python
16 lines
177 B
Python
x = t
|
|
x, = t
|
|
x, y = t
|
|
x, y, = t
|
|
x, y, z = t
|
|
x, y, z, = t
|
|
x, y, z, z = a, b, c, d
|
|
|
|
(x) = t
|
|
(x,) = t
|
|
(x, y) = t
|
|
(x, y,) = t
|
|
(x, y, z) = t
|
|
(x, y, z,) = t
|
|
(x, y, z, z) = a, b, c, d
|