[issue33214] join method for list and tuple

Serhiy Storchaka report at bugs.python.org
Tue Apr 3 11:23:56 EDT 2018


Serhiy Storchaka <storchaka+cpython at gmail.com> added the comment:

String concatenation: f'{a}{b}{c}'
List concatenation: [*a, *b, *c]
Tuple concatenation: (*a, *b, *c)
Set union: {*a, *b, *c}
Dict merging: {**a, **b, **c}

----------
nosy: +serhiy.storchaka

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


More information about the Python-bugs-list mailing list