[issue39641] concatenation of Tuples

Ammar Askar report at bugs.python.org
Sat Feb 15 18:29:55 EST 2020


Ammar Askar <ammar at ammaraskar.com> added the comment:

tuple + tuple is NOT tuple concatenation. It adds each individual member of the tuple. So for example

(a, b) + (c, d)

results in

(a + c, b + d)

----------
nosy: +ammar2

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue39641>
_______________________________________


More information about the Python-bugs-list mailing list