[issue42510] Tuple Slice Bug

Serhiy Storchaka report at bugs.python.org
Mon Nov 30 03:45:13 EST 2020


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

(2) is not a tuple. It is just a number 2. To make a tuple containing a single item you need to use special syntax: add a comma to that item. Parenthesis are optional.

>>> (2)
2
>>> (2,)
(2,)
>>> 2,
(2,)

----------
nosy: +serhiy.storchaka
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

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


More information about the Python-bugs-list mailing list