Search code examples
Why is it not possible to unpack lists inside a list comprehension?...


pythonlist-comprehensioniterable-unpacking

Read More
Unpacking generalizations...


pythonlist-comprehensionpython-3.5iterable-unpackingpython-3.15

Read More
Why does `x = a, b ; zip(x)` give a different result from `zip(a, b)`?...


pythoniterable-unpacking

Read More
Unpacking tuples in a python list comprehension (cannot use the *-operator)...


pythontupleslist-comprehensioniterable-unpacking

Read More
Getting only element from a single-element list in Python?...


pythonlistiterable-unpacking

Read More
Additional Unpacking Generalizations (PEP 448) with variable number of elements...


pythonpython-3.xiterable-unpackingpeppep448

Read More
Why does Python allow unpacking an empty iterable?...


pythonvariable-assignmentiterable-unpacking

Read More
What does *tuple and **dict mean in Python?...


pythonpython-3.xtuplesnamedtupleiterable-unpacking

Read More
list comprehension with iterable unpacking?...


pythonlist-comprehensioniterable-unpacking

Read More
Type hints when unpacking a tuple...


pythonpython-typingiterable-unpacking

Read More
python: when can I unpack a generator?...


pythonargumentsgeneratoriterable-unpacking

Read More
Python-like Iterable Unpacking in C++...


c++iterable-unpacking

Read More
What do ** (double star/asterisk) and * (star/asterisk) mean in a function call?...


pythonsyntaxparameter-passingiterable-unpackingargument-unpacking

Read More
Python 2 tuple / list unpacking using star throws SyntaxError...


pythonpython-2.7iterable-unpacking

Read More
SyntaxError with starred expression when unpacking a tuple on its own for string formatting...


pythonstring-formattingiterable-unpacking

Read More
Why does Python tuple unpacking work on sets?...


pythoniterable-unpacking

Read More
Python f-string equivalent of iterable unpacking by print instruction...


pythonf-stringiterable-unpacking

Read More
How does swapping of members in tuples (a,b)=(b,a) work internally?...


pythontuplespython-internalsiterable-unpacking

Read More
How to type hint args and kwargs, if not unpacking, in most general form?...


pythonpython-typingiterable-unpacking

Read More
What is the correct way to unpack a tuple composed of a TreeNode and an Integer?...


pythonpython-3.xruntime-erroriterable-unpacking

Read More
Why does comprehension only work with tuples when unpacking in Python?...


pythontupleslist-comprehensiongeneratoriterable-unpacking

Read More
Unpacking into several lists of fixed length...


pythoniterable-unpacking

Read More
How to unpack a variable in a lambda function?...


pythondictionarylambdaiterable-unpacking

Read More
Unpacking an array in python...


pythonarraysnumpyiterable-unpacking

Read More
"unpacking" a tuple to call a matching function pointer...


c++function-pointersc++11variadic-templatesiterable-unpacking

Read More
Is it possible to assign a default value when unpacking?...


pythonpython-3.xiterable-unpacking

Read More
Split tuple items to separate variables...


pythontuplesiterable-unpacking

Read More
Ignore part of a python tuple...


pythontuplesiterable-unpacking

Read More
Order of operations for three (or more) distinct variable assignments using a linked list in python ...


pythonpython-3.xlinked-listvariable-assignmentiterable-unpacking

Read More
python parallel assignment of 3 variables...


pythonpython-3.xvariable-assignmentiterable-unpacking

Read More
BackNext