C
Chris Angelico
Traceback (most recent call last):[x] = ""
Traceback (most recent call last):File said:[x] = "a"
[x] = "ab"
File "<stdin>", line 1, in <module>
ValueError: too many values to unpack
Hey look, it's a new operator - the "assign-sole-result-of-iterable" operator!
x ,= "a"
ChrisA