[lang-ref] Assign to multi variable ( python )
def test_assign_to_multi_variable():
# (a, b, c) = (1, 2, 3)
(a, b, c) = [1, 2, 3]
assert a == 1 and b == 2 and c == 3
(a, b, c) = (1, 2, 3)
assert a == 1 and b == 2 and c == 3
[a, b, c] = (1, 2, 3)
assert a == 1 and b == 2 and c == 3
a, b, c = 1, 2, 3
assert a == 1 and b == 2 and c == 3