Python language concept. Assigning "a,b,c = x" when variable X is a tuple or list, unpacks the values in X and stores them in the left-hand-side values specified.

learn more… | top users | synonyms

0
votes
2answers
42 views

Python: unpacking into array elements

Why does the behavior of unpacking change when I try to make the destination an array element? >>> def foobar(): return (1,2) >>> a,b = foobar() >>> (a,b) (1, 2) ...
1
vote
1answer
36 views

Please explain a python zip and unpacking solution [duplicate]

A Python 3 learner here: The question had the following accepted answer: rr,tt = zip(*[(i*10, i*12) for i in xrange(4)]) which returns two tuples. I'd be grateful if someone could break down the ...
1
vote
1answer
47 views

vector unpacking for octave

Octave(/matlab)'s notation for handling multiple return values [a, b] = f(x) suggests that the values returned by f(x) are in a sort of row vector and that Octave supports vector unpacking (like ...
1
vote
2answers
76 views

Python-like unpacking of numeric value in R [duplicate]

In Python, one can do this: >>> a, b, c = (1, 2, 3) >>> a 1 >>> b 2 >>> c 3 Is there a way to do it in R, as below? > a, b, c = c(1, 2, 3)
1
vote
3answers
114 views

Python: Why can't I unpack a tuple into a dictionary?

Why doesn't this work?: d["a"], d["b"] = *("foo","bar") Is there a better way to achieve what I'm trying to achieve?
5
votes
1answer
156 views

python tuples and lists. A tuple that refuses to convert

I need to know WHY this fails: class ConfigurationError(Exception): def __init__(self, *args): super(ConfigurationError, self).__init__(self, args) self.args = list(args) ...
8
votes
1answer
162 views

How exception-safe is std::tie?

std::tie returns a tuple of references, so you can do the following: int foo, bar, baz; std::tie(foo, bar, baz) = std::make_tuple(1, 2, 3); This is similar to foo, bar, baz = (1, 2, 3) in Python. ...
3
votes
2answers
57 views

Return iterable of unpackable values that won't break client code if I start returning more data

Let's say you're writing an API you intend to make public. A function quux in your API returns a list or a generator of tuples, e.g. yield (foo, bar). The client code would typically use it like ...
0
votes
1answer
42 views

How to unpack a tuple while calling an external method in Python?

I call a method of an external library multiple times in my class like this: class MyClass: const_a = "a" const_b = True const_c = 1 def push(self, pushee): with ...
1
vote
3answers
90 views

Unpacking error in python

I'm making a script and i need to do this: for ip, location, zone, dns in data: But i get this error: ValueError: need more than 3 values to unpack The data is built it this way: def ...
4
votes
3answers
254 views

`x = y, z` comma assignment in JavaScript [duplicate]

Possible Duplicate: Javascript syntax: what comma means? I came across the code while reading this article (do a Ctrl+F search for Andre Breton): //function returning array of `umbrella` ...
2
votes
3answers
178 views

Tuple unpacking in list construction (python3)

I'd love to use tuple unpacking on the right hand side in assignments: >>> a = [3,4] >>> b = [1,2,*a] File "<stdin>", line 1 SyntaxError: can use starred expression only as ...
2
votes
3answers
129 views

Python terminology: things to left of “= argv” in Learn Python the Hard Way exercise 13

Zed Shaw's "Learn Python the Hard Way" frequently asks you to "write out in English" what each and every line of a script does. I am struggling to do that with some stuff associated with the function ...
4
votes
7answers
390 views

Python - tuple unpacking in dict comprehension

I'm trying to write a function that turns strings of the form 'A=5, b=7' into a dict {'A': 5, 'b': 7}. The following code snippets are what happen inside the main for loop - they turn a single part of ...
2
votes
2answers
112 views

std::tuple to member functions

I'm still trying to get the swing of metaprogramming, and I'm stumped. What's I'd like to do is create a class/struct/whatever, supply it a std::tuple and have it automatically generate member ...
1
vote
4answers
161 views

How to define method with optional argument and argument unpacking?

I have a question regarding how to define and call a method with both optional arguments and with a *args parameter in Python. For example, def test_func(arg1, optional_arg=None, *args): ... ...
0
votes
2answers
89 views

Python how to initialize thread with unknown number of arguments?

I'm having trouble using the starred expressions in combination with fixed argument lists when attempting to create threads. Consider the following code: the_queue = Queue() def do_something(arg1, ...
3
votes
4answers
77 views

Can I be sure about the order in a dictionary?

Can I be sure about the order in a Python dictionary? The function op.GetTangent(id) returns a dictionary containing two values associated with 'vl' and 'vr'. I want to unpack it the lazy way. vr, ...
3
votes
4answers
700 views

Is there way to create tuple from list(without codegeneration)?

Sometimes there are needs to create tuples from small collections(for example scalding framework). def toTuple(list:List[Any]):scala.Product = ...
24
votes
6answers
930 views

Semantics of tuple unpacking in python

Why does python only allow named arguments to follow a tuple unpacking expression in a function call? >>> def f(a,b,c): ... print a, b, c ... >>> f(*(1,2),3) File ...
0
votes
2answers
96 views

How do you take data from Python sort and perform some math on the tuple without messing up the sort order?

I am writing a script to list the 20 largest files in a target directory. Once I have the files, I perform some math on the size to apply the correct human readable sizing information, i.e., Kb, Mb, ...
9
votes
5answers
878 views

How to unpack tuple of length n to m<n variables

In Python 3 I can do the following (see also PEP3132 on Extended Iterable Unpacking): a, *b = (1, 2, 3) # a = 1; b = (2, 3) What can I do to achieve the same similar elegant in Python 2.x? I ...
1
vote
4answers
197 views

Unpack tuple into another tuple

Suppose I need to construct a tuple of length three: (x , y, z) And I have a function which returns a tuple of length two - exampleFunction and the last two elements of the tuple to be constructed ...
-2
votes
4answers
171 views

Python, is this a bug, append to a list within a tuple results in None?

This is one of the shortest examples I've written in a long time I create and update a tuple3 In [65]: arf=(0,1,[1,2,3]) In [66]: arf=(arf[0],arf[1], arf[2] ) In [67]: arf Out[67]: (0, 1, [1, 2, ...
2
votes
3answers
544 views

Ignore part of a python tuple

If I have a tuple such as (1,2,3,4) and I want to assign 1 and 3 to variables a and b I could obviously say myTuple = (1,2,3) a = my_tuple[0] b = myTuple[2] Or something like (a,_,b,_) = myTuple ...
0
votes
2answers
102 views

Squashing tuples from (a,(b,c)) to (a,b,c) in fsharp

Does it make sense to have such functions defined let squash12 (e:('a*('b*'c) )) = e |> (fun (a,(b,c) ) -> (a,b,c )) let squash21 (e:(('a*'b)*'c )) = e |> (fun ((a,b),c ) -> (a,b,c ...
2
votes
2answers
245 views

fst and 3-tuple in fsharp

Do you know the nicest way to make this work : let toTableau2D (seqinit:seq<'a*'b*'c>) = let myfst = fun (a,b,c) -> a let myscd = fun (a,b,c) -> b let mytrd = fun (a,b,c) -> ...
3
votes
7answers
557 views

How To Merge an Arbitrary Number of Tuples in Python?

I have a list of tuples: l=[(1,2,3),(4,5,6)] The list can be of arbitrary length, as can the tuples. I'd like to convert this into a list or tuple of the elements, in the order they appear: ...
3
votes
1answer
189 views

overloading operator << for std::tuple - possible simplications?

I used an answer to the SO question "iterate over tuple" to write a method to overload <<. This method was tested and appears to work correctly with g++ 4.7 on Debian squeeze. However this ...
2
votes
2answers
430 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 ...
8
votes
2answers
202 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 ...
3
votes
5answers
2k 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 ...
45
votes
4answers
4k views

“unpacking” a tuple to call a matching function pointer

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 function pointer which matches the stored types. I've created a simplified ...
-2
votes
3answers
201 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, ...
1
vote
2answers
117 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 ...
0
votes
2answers
223 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 ...
1
vote
2answers
1k 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 ...
2
votes
4answers
534 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 ...
6
votes
4answers
524 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 { ...
26
votes
5answers
3k 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, ...
2
votes
2answers
480 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)])
0
votes
3answers
578 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 ...
5
votes
4answers
1k 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 ...
0
votes
2answers
394 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 ...
11
votes
3answers
563 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 ...
11
votes
3answers
2k 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
4answers
962 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
5answers
752 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 ...
17
votes
2answers
2k 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() ...
10
votes
1answer
889 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 ...

1 2