In programming, tuples are simple *product types*, representing ordered collections of types.

learn more… | top users | synonyms (1)

0
votes
1answer
27 views

TypeError: can only concatenate tuple (not “str”) to tuple Error

Just trying to make a tuple to add to make my main programming. Anyway this is my code- print"I have a few things to finish my exam, but i might need more" exam=("Brain","Computer","python") print ...
2
votes
5answers
30 views

find and delete tuple from list of tuples in C# 4.0

I have created a list of tuples: static List<Tuple<string, string>> Alt; The user adds to this list: Alt.Add(new Tuple<string, string>(tbAlt.Text, "")); What is the best way ...
1
vote
1answer
119 views

How does std::get work?

After trying to make a std::get<N>(std::tuple) method myself, I'm not so sure how it's implemented by compilers. I know std::tuple has a constructor like this, tuple(Args&&... args); ...
0
votes
1answer
35 views

What is the best integer n-tuple hash in python?

Adopting from the Java Array class (lines 2938-2947) we can do: def java_like_hash(tup): return reduce(lambda x,y: 31*x+y, (1,)+tup) But is this optimal for python?
4
votes
3answers
39 views

Python: Match two elements in a tuple, return the 3rd

I have a set of input conditions that I need to compare and produce a 3rd value based on the two inputs. a list of 3 element tuples seems like a reasonable choice for this. Where I could use some help ...
6
votes
2answers
51 views

Most efficient way of finding the next element in a tuple

I've got a system in which I often (but not constantly) have to find the next item in a tuple. I'm currently doing this like so: mytuple = (2,6,4,8,7,9,14,3) currentelement = 4 def f(mytuple, ...
0
votes
2answers
57 views

list of lists rather than list of tuples - python

I'm working on a program that will give all combinations of list of values without repetition. It doesn't matter how the result is sorted so long as both [10, 9, 8] and [8, 9, 10] are not both ...
0
votes
2answers
24 views

Passing a tuple between two Panels in wxPython

I am trying to pass the tuple of the the checked strings in one panel to the textCtrl widget in another panel. I thought that if I polled the panel class containing the checklistbox widget for the ...
3
votes
3answers
49 views

How to change a tuple within a value of a dictionary?

I have a dictionary of the format : d[key] = [(val1, (Flag1, Flag2)), (val2, (Flag1, Flag2)), (val3, (Flag1, Flag2))] I want to make it : d[key] = [(val1, Flag1), ...
0
votes
3answers
38 views

Find those tuples in which the second element is maximum among all values with same first element

How to sanitize a given list of tuples, such that only tuples with maximum values are listed. mytup = [('a',2),('a',6),('b',4),('a',4),('b',10),('c',4),('c',6),('c',8),('d',12),('d',10)] Result ...
0
votes
0answers
25 views

Learning List Comprehensions and Dictionary Comprehensions for Python [closed]

I am looking for a good material which can be used for clearly understanding the concept behind List Comprehensions and Dictionary Comprehensions, and their usage with lists, dictionaries and tuples. ...
5
votes
4answers
202 views

How do I sort efficiently a quadruple structs in C++?

I have a struct with members x,y,z and w. How do I sort efficiently first by x, then by y, by z and finally by w in C++?
2
votes
3answers
44 views

Extracting key/value pair from dictionary

OK this is a Python question: We a have a dictionary: my_dict = { ('John', 'Cell3', 5): 0, ('Mike', 'Cell2', 6): 1, ('Peter', 'Cell1', 6): 0, ('John', ...
2
votes
4answers
95 views

Use 4 (or N) collections to yield only one value at a time (1xN) (i.e. zipped for tuple4+)

scala> val a = List(1,2) a: List[Int] = List(1, 2) scala> val b = List(3,4) b: List[Int] = List(3, 4) scala> val c = List(5,6) c: List[Int] = List(5, 6) scala> val d = List(7,8) d: ...
0
votes
1answer
35 views

Python: Defining a tuple with unknown values inbetween

This is a most interesting thing in python I've come across in variable referencing as tuple. Could someone give me an equivalent in C??? h = 1,_,3,_ h Out[2]: (1, '', 3, '') h = 1,'',3, '' h ...
0
votes
2answers
38 views

Permutations / combinations by tuple in Python

I have a list of tuples that I need to 1) sort based on the 1st attribute, then 2) create a new list of tuples based on the combindations of the 2nd attribute which are matching the 1st attribute. ...
0
votes
2answers
34 views

Undesired results while merging list and tuples

So, I have, fo = {'current': [[1,23],[3,45],[5,65]]} pl = {'current': [(2,30),(3,33),(5,34)]} total = {} for i in fo,pl: for j in i: if total.get(j): ...
0
votes
2answers
46 views

Searching for a tuple with all elements greater than a given tuple efficiently

Consider the following list of tuples: [(5,4,5), (6,9,6), (3,8,3), (7,9,8)] I am trying to devise an algorithm to check whether there exists at least one tuple in the list where all elements of that ...
0
votes
1answer
14 views

How can I access part of a tuple which is returned from a custom tag in a Django template?

I have a function that returns a non-current user's first and last name as a tuple, using the following custom tag, where foo is a username from active directory: {% name foo %} I would like to ...
2
votes
4answers
63 views

Python: Finding the average stock value for each month

Basically I have a list of tuples that include a data and price, something like: [ ("2013-02-12", 200.0), ("2012-02-25", 300.0), ("2000-03-04", 100.0), ("2000-03-05", 50.0)] The function needs to ...
0
votes
3answers
47 views

iterate over list of tuples in two notations

I'm iterating over a list of tuples, and was just wondering if there is a smaller notation to do the following: for tuple in list: (a,b,c,d,e) = tuple or the equivalent for (a,b,c,d,e) in ...
-1
votes
2answers
50 views

Keeping a tally against each element in a list?

I have a problem that seems like it ought to be really simple, but amazingly I can't figure out a good solution to it. Perhaps I'm missing something obvious. I have a list of objects that I wish to ...
1
vote
1answer
66 views

What is a tuple module in Erlang?

http://www.erlang.org/news/35 mentioned that this will be documented, but I can't find it in the documentation.
0
votes
0answers
43 views

Big SPARQL queries fails in Oracle 11g

Is there any limit of maximum number of "OPTIONAL" parameters in oracle spatial jena? The reason why I am asking is, I have a big query sized around 5000 letters which executes perfect. I am using ...
0
votes
1answer
46 views

Is it possible to add a variable to Django Model Field.choices?

Is it possible to add a variable to Django Model Field.choices? I lose functionality when I have to add it statically. IP_CHOICES = ( ('192.168.1.0', '192.168.1.0'), ) ip_address = ...
0
votes
1answer
37 views

Tuple dictionary key not able to be retrieved

One problem goes, another comes- I've got another(probably just as obvious) problem: 'tuple' object is not callable from for a in range(current_view_y,current_view_y+60): for b in ...
3
votes
2answers
97 views

How to merge tuples by same elements in Scala

For example, if I have the following tuples: (1, "a", "l") (1, "a", "m") (1, "a", "n") I want to merge them like this: (1, "a", List("l", "m", "n")) In my case, the lists are a result from an ...
0
votes
2answers
20 views

Error in checking my mouse position on my canvas (Pygame)

My code is supposed to check my mouse position then print it but it only checks it once, whats the issue? import pygame, sys, time from pygame.locals import * pygame.init() WINDOW_WIDTH = 1000 ...
0
votes
1answer
58 views

Create List of Tuples from List using LINQ

I'm trying to create a list of tuples from a list using LINQ, but can't work out how to do it. What I've got is various data in an external file, which I'm reading sections using a standard method ...
2
votes
2answers
76 views

Return Tuple from Java Method

I wrote a java class: public class Tuple<X, Y> { public final X x; public final Y y; public Tuple(X x, Y y) { this.x = x; this.y = y; } } but when I create a function ...
1
vote
4answers
78 views

How do I remove duplicate arrays in a list in Python

I have a list in Python filled with arrays. ([4,1,2],[1,2,3],[4,1,2]) How do I remove the duplicate array?
0
votes
1answer
27 views

Multiply tuple elements if the first element in a tuple matches else ignore

I have a list of tuples like below [(0, 33), (3, 26), (4, 95), (0, 28), (1, 12), (2, 3), (4, 69)] I want to multiply the second elements of the tuple IF the first element matches (once or more); ...
2
votes
2answers
55 views

Python - unpack struct into multiple tuples

I'd like to know if there is a cleaner way to do the following in Python 2.7? # Current working code! (is_enabled,) = struct.unpack_from("<?", data) cmd_speed = struct.unpack_from("<3h", data, ...
1
vote
7answers
83 views

How to do the following operation in python in tricky way?

I have a list of tuples as follows [(1,4),(3,5),(2,9),(6,23),(3,21),(2,66),(5,20),(1,33),(3,55),(1,8)] Now I need something like this In the above list, each element is a tuple and the first item ...
0
votes
3answers
61 views

Python error: unhashable type: 'list'

I started learning Python few weeks ago (with no previous knowledge of it nor programming). I want to create a definition which will for given dictionary as an argument return a tuple consisted of two ...
5
votes
1answer
155 views

Parameter Pack Confusion

I just came across a very strange situation when writing a C++11 std::tuple-like class and trying to compile it with g++-4.7. What I basically need is a tuple of wrapped types. I wrote something like ...
0
votes
1answer
18 views

Compacting tuples from a QS

What's the Pythonic way to convert this list of tuples to a simpler list of tuples? import urllib.parse QS='field=var1&save=stringA&field=var2&save=&field=var3&save=stringC' ...
0
votes
0answers
71 views

Adding an (Int, Int) tuple to a Set in scala [duplicate]

I want to add have a set of integer tuples in Scala like so: var set = Set[(Int, Int)]() But, when I try to add a tuple to the set by doing set += (1, 2) it complains <console>:9: ...
0
votes
2answers
46 views

Python top ten list

list = ('Bob', 11, 333, 453.3, 'Ted', 15, 999, 345.5, 'Jeff', 22, 122, 434.7) Hi, I'am trying to build a top 10 list from the above information. The first value : goals, the second value : ...
1
vote
3answers
44 views

Parse dictionary with Tuple as key

My dictionary with tuple as a key is as follows: Key represents the x and y coordinates. (x, y) D1 = {(10,12): 23, (8,14): 45, (12, 9): 29} D2 = {(2, 8) : 67, (12, 10): 23, (14, 8): 56} Now, from ...
0
votes
1answer
50 views

What does the python tuple multiplied by some constant mean?

I read some python codes like follows: color = (1.0,)*4 I couldn't figure out what does it mean? (1.0,) means some tuple, but what does it mean by multiplying 4 here?
1
vote
3answers
79 views

matplotlib 2d line line,=plot comma meaning

I'm walking through basic tutorials for matplotlib, and the example code that I'm working on is: import numpy as np import matplotlib.pylab as plt x=[1,2,3,4] y=[5,6,7,8] line, = ...
2
votes
3answers
74 views

Python add item to the tuple

I have some object.ID-s which I try to store in the user session as tuple. When I add first one it works but tuple looks like (u'2',) but when I try to add new one using mytuple = mytuple + new.id got ...
0
votes
2answers
40 views

Python tuple not populating

I must be missing something here when I try to populate a tuple in a for loop. ...more code above... colItems = objSWbemServices.ExecQuery(queryString) #print type(colItems) Is the above ...
-1
votes
0answers
36 views

Tuple to CSV in Python [closed]

I have a list of tuples, and I'd like to write them to a csv file. List = ["(u'url1', u'html')", "(u'url2', u'PDF')", "(u'url3', u'php')", "(u'url4', u'jspx')"] I've tried the following, but it ...
1
vote
1answer
64 views

Is it possible to infer template parameters of tuple from brace-type initialization?

In this example, is it possible to allow the deduction of the template parameters type of the tuple? #include<tuple> #include<string> template<class T1, class T2> void ...
-1
votes
1answer
29 views

Separate blocks of texts using regular expressions - Python [closed]

I have the following output from the Stanford Parser: nicaragua president ends visit to finland . nn(ends-3, nicaragua-1) nn(ends-3, president-2) nsubj(visit-4, ends-3) xsubj(finland-6, ends-3) ...
1
vote
1answer
37 views

Is it possible to get the nth item in a tuple?

I am passing a few optional arguments to a function as a tuple, since all of these have to be passed together or not at all. I would like to be able to iterate over the elements of the tuple ...
2
votes
2answers
54 views

Function returns tuple instead of string

I have a function in python similar to the following: def checkargs(*args): if len(args) == 1: x = args y = something elif len(args) == 2: x, y = args return x, y ...
13
votes
1answer
205 views

Employing arrows to fold a list of tuples

Sometimes you want to fold a list of tuples into one tuple using different folding functions. For instance, in order to glue together a list of runState results, getting an (in some sense) combined ...

1 2 3 4 5 31