Hacker News new | ask | show | jobs
by yangyang 5675 days ago
It's not just parallel assignment, it's destructuring assignment:

    >>> a, (b, (c, d), e) = 1, (2, [3, 4], 5)
    >>> a
    1
    >>> b
    2
    >>> c
    3
    >>> d
    4
    >>> e
    5
The question is how far you go with the highlighting.