Tagged Questions
The tuple-unpacking tag has no wiki summary.
17
votes
5answers
885 views
Why is Scala's syntax for tuples so unusual?
In mathematics and computer science, a tuple is an ordered list of elements. In set theory, an (ordered) n-tuple is a sequence (or ordered list) of n elements, where n is a positive integer.
So, ...
13
votes
4answers
9k views
Django - How to do tuple unpacking in a template 'for' loop
In my views.py, I'm building a list of two-tuples, where the second item in the tuple is another list, like this:
[ Product_Type_1, [ product_1, product_2 ],
Product_Type_2, [ product_3, product_4 ...
12
votes
3answers
315 views
“unpacking” a tuple to call a matching function pointer
I've created a simplified example showing a problem I'm struggling to solve. I'm trying to store in a std::tuple a varying number of values, which will later be used as arguments for a call to a ...
11
votes
3answers
284 views
Tuple Unpacking Similar to Python, but in Common Lisp
Is there a way to assign the values of a list to a list of symbols in Common Lisp similar to the way that you can assign the values of tuple to variables in Python?
x, y, z = (1, 2, 3)
Something ...
9
votes
1answer
592 views
Scala: Parallel assignment of Tuples
Is it possible to assign tuple members in parallel in Scala. if not is there another technique to accomplish something similar?
val players = List(
new Player("Django Reinhardt", 42),
new ...
8
votes
2answers
133 views
Why does Scala construct a new Tuple when unpacking a Tuple?
Why does this Scala code:
class Test
{
def foo: (Int, String) =
{
(123, "123")
}
def bar: Unit =
{
val (i, s) = foo
}
}
generate the following bytecode for bar() that ...
8
votes
1answer
312 views
Is it possible to unpack a tuple without using variables?
I'm using the os.path.split() function on a path in my program to get the filename and pathname of a file then passing them into another method, but my current solution seems rather ugly:
path = ...
8
votes
2answers
4k views
unpacking an array of arguments in php
Python provides the "*" operator for unpacking a list of tuples and giving them to a function as arguments, like so:
args = [3, 6]
range(*args) # call with arguments unpacked from a list
...
7
votes
2answers
442 views
Is it possible to unpack a tuple in Python without creating unwanted variables?
Is there a way to write the following function so that my IDE doesn't complain that column is an unused variable?
def get_selected_index(self):
(path, column) = self._tree_view.get_cursor()
...
4
votes
3answers
459 views
Javascript equivalent of Python's sequence unpack: a,b=(1,2)?
is there a javascript equivalent to unpack sequences like in python (a,b=(1,2))?
Thanks in advance.
3
votes
4answers
160 views
Tuple Unpacking in Map Operations
I frequently find myself working with Lists, Seqs, and Iterators of Tuples and would like to do something like the following,
val arrayOfTuples = List((1, "Two"), (3, "Four"))
arrayOfTuples.map { ...
3
votes
3answers
375 views
Extended tuple unpacking in Python 2
Is it possible to simulate extended tuple unpacking in Python 2?
Specifically, I have a for loop:
for a, b, c in mylist:
which works fine when mylist is a list of tuples of size three. I want the ...
3
votes
3answers
341 views
What is scheme's equivalent of tuple unpacking?
In Python, I can do something like this:
t = (1, 2)
a, b = t
...and a will be 1 and b will be 2. Suppose I have a list '(1 2) in Scheme. Is there any way to do something similar with let? If it ...
2
votes
4answers
171 views
Python unpack 2-dimensional list of named tuples
I have a 2-dimensional list of named tuples (let's say that each tuple has N values), and I want to unpack them into N different 2-dimensional lists where each unpacked 2-D list is composed entirely ...
2
votes
2answers
160 views
format string in python 2.5 unpacking a list
Is there a way to do something like this in Python 2.5:
b = ('{!s}'*3)
b.format(*[i for i in xrange (3)])
because this is not working:
b = ('%s'*3)
b % (*[i for i in xrange (3)])
2
votes
4answers
295 views
Will tuple unpacking be directly supported in parameter lists in Scala?
In Haskell you can write:
x :: (Int,Int) -> Int
x (p,s) = p
In Scala you would write:
def x(a: (Int, Int)) = a._1
or:
def x(a: (Int, Int)) = a match {
case (p, s) => p
}
Why not ...
2
votes
5answers
242 views
Getting a Python function to cleanly return a scalar or list, depending on number of arguments
Disclaimer: I'm looking for a Python 2.6 solution, if there is one.
I'm looking for a function that returns a single value when passed a single value, or that returns a sequence when passed multiple ...
2
votes
3answers
772 views
Meaning of using commas and underscores with Python assignment operator?
Reading thru Peter Norvig's Solving Every Sudoku Puzzle essay, I've encounted a few Python idioms that I've never seen before.
I'm aware that a function can return a tuple/list of values, in which ...
1
vote
2answers
61 views
Tuples and unpacking assignment support in C#?
In Python I can write
def myMethod():
#some work to find the row and col
return (row, col)
row, col = myMethod()
mylist[row][col] # do work on this element
But in C# I find myself writing ...
1
vote
4answers
106 views
Wildcards in Python?
Over the years I have noticed the 'wildcard' variable in various bits and pieces of Python I've come across. I assumed it worked like Haskell: allowing you to put a variable where one was required in ...
1
vote
2answers
101 views
why would spaces in a Python tuple matter?
I've been getting weird results and I finally noticed that my habit of putting spaces in a tuple is causing the problem. If you can reproduce this problem and tell me why it works this way, you would ...
1
vote
2answers
203 views
unpacking, function application, and packing tuples in C++0X
What is the best way to write the readvals function in the following code without using Boost? Basically, it should get a tuple, call a specific function of it's elemets and return the generated ...
1
vote
2answers
353 views
How to fix “can't adapt error” when saving binary data using python psycopg2
I ran across this bug three times today in one of our projects. Putting the problem and solution online for future reference.
impost psycopg2
con = connect(...)
def save(long_blob):
cur = ...
1
vote
2answers
604 views
How to translate python tuple unpacking to Matlab?
I am translating some python code to Matlab, and want to figure out what the best way to translate the python tuple unpacking to Matlab is.
For the purposes of this example, a Body is a class whose ...
0
votes
1answer
49 views
Getting integers from a tuple saved then loaded with pickle
On Python, I made a module for saving and loading integers, It can save roughly as I want it (I am using Pickle) but when I load it I receive my integers in tuple-form (because I made it a tuple to ...
0
votes
3answers
72 views
Returning tuple with a single item from a function
Just came across this little bit of weirdness in Python and thought I'd document it write it as a question here in case anyone else is trying to find an answer with the same fruitless search terms I ...
0
votes
2answers
165 views
Python tuple unpack problem
sendnpc = (npc2alive,Orinpc3,Posnpc3)
Data = dumps((PosYou,OriYou,Shoot,txtt,Posnpc,Orinpc,npcalive,Posnpc2,Orinpc2,sendnpc))
I'm sending this material to another computer, the problem is when ...
-1
votes
3answers
74 views
Mapping tuple $(R, R)$ into $((R,R),R)$?
Input
[[0 0 0 0 0]
[0 4 0 0 0]
[0 1 0 0 0]
[0 1 2 0 0]
[0 1 2 3 0]]
Intended output
[[(0, day00) (0, day01) (0, day02) (0, day03) (0, day04)]
[(0, day10) (4, day11) (0, day12) (0, day13) (0, ...