Tagged Questions

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

learn more… | top users | synonyms (1)

150
votes
8answers
78k views

Python: What is the best way to check if a list is empty?

For example, if passed the following: a = [] How do I check to see if a is empty?
118
votes
17answers
71k views

Python: Sort a dictionary by value

I have a dictionary of values read from 2 fields in a database: a string field and a numeric field. The string field is unique so that is the key of the dictionary. I can sort on the keys, but how ...
79
votes
24answers
27k views

Does Java need tuples?

This question got me re-thinking about something that always bothered me: Does Java need tuples? Do you feel the lack of them in your day-to-day work? Do you think tuples would simplify otherwise ...
68
votes
4answers
6k views

What are “named tuples” in Python?

Reading the changes in Python 3.1, I found something... unexpected: The sys.version_info tuple is now a named tuple: I never heard about named tuples before, and I thought elements could either ...
58
votes
12answers
27k views

Will a future version of .NET support tuples in C#?

.Net 3.5 doesn't support tuples. Too bad, But not sure whether the future version of .net will support tuples or not?
54
votes
9answers
2k views

Is Using Tuples in my .NET 4.0 Code a Poor Design Decision?

With the addition of the Tuple class in .net 4, I have been trying to decide if using them in my design is a bad choice or not. The way I see it, a Tuple can be a shortcut to writing a result class ...
51
votes
6answers
9k views

What's the difference between list and tuples in Python?

What's the difference? What are the advantages / disadvantages of tuples / lists?
36
votes
9answers
11k views

Why is the use of tuples in C++ not more common?

Why does nobody seem to use tuples in C++, either the Boost Tuple Library or the standard library for TR1? I have read a lot of C++ code, and very rarely do I see the use of tuples, but I often see ...
34
votes
9answers
2k views

Why do we need tuples in Python (or any immutable data type)?

I've read several python tutorials (Dive Into Python, for one), and the language reference on Python.org - I don't see why the language needs tuples. Tuples have no methods compared to a list or set, ...
23
votes
9answers
4k views

Boost::Tuples vs Structs for return values

I'm trying to get my head around tuples (thanks @litb), and the common suggestion for their use is for functions returning > 1 value. This is something that I'd normally use a struct for , and I ...
18
votes
12answers
2k views

Why use tuples instead of objects?

The codebase where I work has an object called Pair where A and B are the types of the first and second values in the Pair. I find this object to be offensive, because it gets used instead of an ...
17
votes
2answers
347 views

getting an element from a tuple [closed]

Possible Duplicate: Why doesn't ADL find function templates? Calling get does not seem to invoke argument dependent lookup: auto t = std::make_tuple(false, false, true); bool a = ...
17
votes
5answers
883 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, ...
17
votes
3answers
3k views

C++0x, How do I expand a tuple into variadic template function arguments?

Consider the case of a templated function with variadic template arguments: template<typename Tret, typename... T> Tret func(const T&... t); Now, I have a tuple t of values. How do I call ...
17
votes
16answers
4k views

What's the best way of using a pair (triple, etc) of values as one value in C#?

That is, I'd like to have a tuple of values. The use case on my mind: Dictionary<Pair<string, int>, object> or Dictionary<Triple<string, int, int>, object> Are there ...
17
votes
8answers
2k views

What is a tuple useful for?

I am learning Python for a class now, and we just covered tuples as one of the data types. I read the Wikipedia page on it, but, I could not figure out where such a data type would be useful in ...
16
votes
1answer
386 views

Haskell tuple constructor (GHC) and the separation between a language and its implementation

Haskell blew my mind yet again when I realised that (x,y) Is just syntactic sugar for (,) x y Naturally I wanted to extend this to larger tuples. But (,) x ((,) y z) Gave me (x,(y,z)) ...
16
votes
5answers
492 views

Why should I avoid creating a MutableTuple<T1,T2,TEtc> class in C#?

I am a big fan of .NET 4.0's Tuple classes. All the items in the Tuples are immutable. There are clearly cases where this is beneficial (most obviously when Tuples are used to represent an ad hoc ...
15
votes
6answers
3k views

Ignore python multiple return value

Say I have a Python function that returns multiple values in a tuple: def func(): return 1, 2 Is there a nice way to ignore one of the results rather than just assigning to a temporary ...
14
votes
1answer
1k views

asp.net mvc 3 razor view -> strongly typed List of tuple problem

I'm having an odd problem with asp.net MVC razor view. I want my model to be a List<Tuple<string, int, int, int, int>> which is perfectly valid in my other c# methods. But when I paste ...
14
votes
2answers
337 views

How to query a constexpr std::tuple at compile time?

In C++0x, one can create a constexpr std::tuple, e.g. like #include <tuple> constexpr int i = 10; constexpr float f = 2.4f; constexpr double d = -10.4; constexpr std::tuple<int, float, ...
14
votes
3answers
4k views

Python - merge items of two lists into a list of tuples

What's the pythonic way of achieving the following? list_a = [1, 2, 3, 4] list_b = [5, 6, 7, 8] #Need to create a of tuples from list_a and list_b list_c = [(1,5), (2,6), (3,7), (4,8)] Each ...
14
votes
3answers
5k views

Tuples( or arrays ) as Dictionary keys in C#

I am trying to make a Dictionary lookup table in C#. I need to resolve a 3-tuple of values to one string. I tried using arrays as keys, but that did not work, and I don't know what else to do. At ...
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
7answers
203 views

Why can't I use a list as a dict key in python?

I'm a bit confused about what can/can't be used as a key for a python dict. dicked = {} dicked[None] = 'foo' # None ok dicked[(1,3)] = 'baz' # tuple ok import sys dicked[sys] = 'bar' # ...
12
votes
1answer
399 views

Pretty-print std::tuple

This is a follow-up to my previous question on pretty-printing STL containers, for which we managed to develop a very elegant and fully general solution. In this next step, I would like to include ...
12
votes
4answers
332 views

Are there any practical examples of tuples for beginning programmers?

I am making an instructional video for C# 4.0 for beginning programmers. For every topic I introduce I include a practical example which the student could actually use, for instance, for the improved ...
12
votes
9answers
795 views

What problem was the tuple designed to solve?

I'm looking at the new C# feature of tuples. I'm curious, what problem was the tuple designed to solve? What have you used tuples for in your apps? Update Thanks for the answers thus far, let me ...
11
votes
3answers
274 views

Implementing comparision operators via 'tuple' and 'tie', a good idea?

(Note: tuple and tie can be taken from Boost or C++0x.) When writing small structs with only two elements, I sometimes tend to choose a std::pair, as all important stuff is already done for that ...
11
votes
2answers
356 views

Void type in std::tuple

Obviously, you can't have an instance of type void in a well-formed program, so something like the following declaration won't compile: std::tuple<void, double, int> tup; However, as long as ...
11
votes
3answers
289 views

What's the purpose of the Tuple(T1)/Singleton in .net?

One of the Tuple Types in .net 4 is a Single-Element Tuple. I just wonder what the purpose of this struct is? The only use I saw is when using in the 8+ Tuple as it can be assigned to TRest, where it ...
11
votes
1answer
1k views

Use 'map' and stuff on Scala Tuples?

'map' preserves the number of elements, so using it on a Tuple seems sensible. My attempts so far: scala> (3,4).map(_*2) error: value map is not a member of (Int, Int) (3,4).map(_*2) ...
11
votes
6answers
2k views

python: list vs tuple, when to use each?

In Python, when should you use lists and when tuples? Sometimes you don't have a choice, for example if you have "hello %s you are %s years old" % x then x must be a tuple. But if I am the one ...
11
votes
5answers
3k views

Pythonic way to split comma separated numbers into pairs

I'd like to split a comma separated value into pairs: >>> s = '0,1,2,3,4,5,6,7,8,9' >>> pairs = # something pythonic >>> pairs [(0, 1), (2, 3), (4, 5), (6, 7), (8, 9)] ...
10
votes
3answers
384 views

Does Haskell have variadic functions/tuples?

The uncurry function only works for functions taking two arguments: uncurry :: (a -> b -> c) -> (a, b) -> c If I want to uncurry functions with an arbitrary number of arguments, I could ...
10
votes
5answers
260 views

Explicitly select items from a Python list or tuple

I have the following Python list (can also be a tuple): myList = ['foo', 'bar', 'baz', 'quux'] I can say >>> myList[0:3] ['foo', 'bar', 'baz'] >>> myList[::2] ['foo', 'baz'] ...
10
votes
5answers
243 views

Pythonic shortcut for doubly nested for loops?

Consider if I had a function that took a tuple argument (x,y), where x was in the range(X), and y in the range(Y), the normal way of doing it would be: for x in range(X): for y in range(Y): ...
10
votes
3answers
729 views

Haskell Tuple Size Limit

Why I can't construct large tuples in Haskell? Why there's a tuple size limit? Prelude> (1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1) <interactive>:1:0: No instance for (Show ...
10
votes
4answers
430 views

F# - On the parameters passed to C# methods - are they tuples or what?

I've read many times that Assemblies generated from F# or any other .NET language are (almost) indistinguishable. I was then experimenting with F# and C# interop on .NET 4 (beta 2). I created a ...
10
votes
2answers
3k views

Expanding tuples into arguments

Is there a way to expand a Python tuple into a function - as actual parameters? For example, here expand() does the magic: tuple = (1, "foo", "bar") def myfun(number, str1, str2): return ...
10
votes
5answers
5k views

Python : List of dict, if exists increment a dict value, if not append a new dict

I would like do something like that. list_of_urls = ['http://www.google.fr/', 'http://www.google.fr/', 'http://www.google.cn/', 'http://www.google.com/', ...
10
votes
1answer
471 views

Tuple parameter declaration and assignment oddity

I can assign a tuple as follows: var (min, max) = (1, 2) But I cannot then re-assign as follows (min, max) = (1, 3) //compiler error: ';' expected but '=' found Instead I seem to have to do: ...
10
votes
2answers
2k views

Subclassing Python tuple with multiple __init__ arguments

The following code works: class Foo(tuple): def __init__(self, b): super(Foo, self).__init__(tuple(b)) if __name__ == '__main__': print Foo([3, 4]) $ python play.py play.py:4: ...
10
votes
10answers
5k views

Iterate over pairs in a list (circular fashion) in Python

The problem is easy, I want to iterate over each element of the list and the next one in pairs (wrapping the last one with the first). I've thought about two unpythonic ways of doing it: def ...
10
votes
2answers
8k views

Tuples in Ruby

Does anyone use tuples in Ruby? If so, how may one implement a tuple? Ruby hashes are nice and work almost as well, but I'd really like to see something like the Tuple class in Python, where you can ...
9
votes
3answers
195 views

get part of std::tuple

I have a tuple of unknown size (it's template parametr of method) Is it way to get part of it (I need throw away first element of it) For example, I have tuple<int,int,int>(7,12,42). I want ...
9
votes
2answers
405 views

couldn't match expected type (Int -> Int -> Int) with actual type `(t0, t1, t2)'

Im a beginner and im trying to take some tutorials on haskell before entering the uni for computer science and i got stuck in this program It takes three numbers and puts them in ascending order Can ...
9
votes
2answers
275 views

Constructing a tuple (or list) from already-existing objects - what is the cost?

Suppose we have a function like this one: foo (x, _, y) = (x, y) What it does is, it takes a 3-tuple and returns a pair consisting of the first and third elements of the original tuple. Now ...
9
votes
1answer
289 views

In Scala, how come `println(1,2)` works?

In Scala (2.7.7final), the Predef.println method is defined as having the following signature: def println (x : Any) : Unit How come, then that the following works: scala> println(1,2) (1,2) ...
9
votes
2answers
263 views

How can I call a function that takes 2 parameters with a Tuple2?

I have a function like so: def print(name:String, surname:String) { println(name + " " + surname) } I also have a Tuple2: val johnsmith = ("John", "Smith") When I call print with johnsmith I get ...

1 2 3 4 5 14