2
votes
4answers
194 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/',
…
1
vote
1answer
105 views
In Haskell, how do I recursively manipulate a tuple and preappend a character to the first element in the tuple?
The type of this function is function :: Num a => ([Char],a) -> ([Char],a)
My input for this function would be something like function (".'*",0) and the function finds the f …
0
votes
8answers
250 views
Fastest way to convert ‘(-1,0)’ into tuple(-1, 0)?
I've got a huge tuple of strings, which are being returned from a program. An example tuple being returned might look like this:
('(-1,0)', '(1,0)', '(2,0)', '(3,0)', '(4,0)', '(5 …
3
votes
4answers
270 views
Is this expected C# 4.0 Tuple equality behavior?
I'm seeing different behavior between using .Equals and == between two of .NET 4.0's new Tuple<> instances. If I have overridden Equals on the object in the Tuple<> and call …
2
votes
5answers
122 views
How to pick certain elements of x-tuple returned by a function?
I am a newbie to Python. Consider the function str.partition() which returns a 3-tuple. If I am interested in only elements 0 and 2 of this tuple, what is the best way to pick only …
1
vote
6answers
118 views
Languages that allow named tuples
I was wondering if there are any languages that allow for named tuples. Ie: an object with multiple variables of different type and configurable name.
Eg:
public NamedTuple<do …
0
votes
3answers
61 views
Access modifiers on methods using Tuple in C#
On one hand, a tuple is versatile, but on the other, can be less clear.
As a best practice, should tuple not be used for the return type of a public method? Similarly, should it …
2
votes
3answers
237 views
Javascript: using tuples as dictionary keys
I have a situation where I want to create a mapping from a tuple to an integer. In python, I would simply use a tuple (a,b) as the key to a dictionary,
Does Javascript have tuple …
14
votes
8answers
7k 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?
0
votes
3answers
72 views
How do i return a quoted string from a tuple?
I have a tuple of strings that i would want to extract the contents as a quoted string, i.e.
tup=('string1', 'string2', 'string3')
when i do this
main_str = ",".join(tup)
#i ge …
7
votes
2answers
105 views
Parse error of nested tuples in scala
When writing the following code in scala
var m = Map((0,1) -> "a")
m += ((0,2), "b") // compilation error
I'm getting the error
type mismatch;
found : Int(0)
required: …
10
votes
15answers
1k 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 …
13
votes
9answers
1k views
Subtracting 2 lists in Python
Right now I have vector3 values represented as lists. is there a way to subtract 2 of these like vector3 values, like
[2,2,2] - [1,1,1] = [1,1,1]
Should I use tuples?
If none o …
2
votes
6answers
339 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 do …
6
votes
5answers
517 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), …
