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

11 wiersze
131 B
Python

[] = ()
[] = []
a = b
(a) = b
a, b = c, d
a, b, c = d, e, f
a, b, c, d = e, f, g, h
#(a, b) = c, d
#a, b = (c, d)
#(a, b) = (c, d)