Posts: 5
Threads: 1
Joined: Jan 2019
I have one 3d list of tuple
list=[(0, 1, 6), (5,1,4), (1, 6, 0), (3, 2,1),(4,5,1)] I want to add in a dictionary like this:
{ (0,1,6): 2,
(4,5,1): 2,
(3,2,1): 1 } I want to count the similar tuples.
Any suggestions?
Posts: 4,220
Threads: 97
Joined: Sep 2016
What have you tried?
If this is homework you would probably use the get method of the dictionary with 0 as the default, otherwise use collections.Counter.
Posts: 5
Threads: 1
Joined: Jan 2019
What should I enter for key?
Posts: 8,151
Threads: 160
Joined: Sep 2016
Jan-10-2019, 11:39 AM
(This post was last modified: Jan-10-2019, 11:40 AM by buran.)
What do you think? Look at the sample output dictionary in your original post.
Hint: tuples are hashable objects and can be used as dict keys.
Posts: 2,121
Threads: 10
Joined: May 2017
Jan-10-2019, 01:15 PM
(This post was last modified: Jan-10-2019, 01:15 PM by DeaD_EyE.)
If you don't have to implement your own Counter, you can use the Counter from the collections module.
As mentioned before, tuples are immutable and hashable objects, which can be used as keys for a dict.
In your case, it's just Counter(your_list) .
Btw. you've used list as a name for the list. list is a type and you've overwritten it with your list.
Give it another name.
Posts: 5
Threads: 1
Joined: Jan 2019
Jan-11-2019, 02:38 AM
(This post was last modified: Jan-11-2019, 02:39 AM by fooikonomou.)
mylist = [(x,y,z) for x in range(1,7) for y in range(1,7) for z in range(1,7)]
count=0
combs=[]
counts = dict()
for data in mylist:
if data not in counts:
counts[data] =1
else :
counts[data]=counts[data]+1
print(counts) The problem here is that all the data take value:1 and it is not increment?
Posts: 4,220
Threads: 97
Joined: Sep 2016
(Jan-11-2019, 02:38 AM)fooikonomou Wrote: The problem here is that all the data take value:1 and it is not increment?
All the tuples in mylist are unique, so all of the values would be 1. It looks like you want all of the sorted combinations, so you need to sort them before checking/incrementing counts.
Posts: 5
Threads: 1
Joined: Jan 2019
And how this can be done?
Let's say I have this list:
[(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4), (1, 1, 5), (1, 1, 6), (1, 2, 1), (1, 2, 2), (1, 2, 3), (1, 2, 4), (1, 2, 5), (1, 2, 6), (1, 3, 1), (1, 3, 2), (1, 3, 3), (1, 3, 4), (1, 3, 5), (1, 3, 6), (1, 4, 1), (1, 4, 2), (1, 4, 3), (1, 4, 4), (1, 4, 5), (1, 4, 6), (1, 5, 1), (1, 5, 2), (1, 5, 3), (1, 5, 4), (1, 5, 5), (1, 5, 6), (1, 6, 1), (1, 6, 2), (1, 6, 3), (1, 6, 4)....]
how to sort the tuple values form ex: (6,1,5) --> to (1,5,6)?
Posts: 1,950
Threads: 8
Joined: Jun 2018
Jan-11-2019, 02:02 PM
(This post was last modified: Jan-11-2019, 02:02 PM by perfringo.)
(Jan-11-2019, 01:13 PM)fooikonomou Wrote: how to sort the tuple values form ex: (6,1,5) --> to (1,5,6)?
Like with built-in function sorted()? Note, that it will return list, not tuple (tuples are immutable).
>>> t = (6, 1, 5)
>>> sorted(t)
[1, 5, 6] It you need tuple, then you can just convert it back tuple(sorted(t))
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy
Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Posts: 2,121
Threads: 10
Joined: May 2017
Jan-11-2019, 04:27 PM
(This post was last modified: Jan-11-2019, 04:28 PM by DeaD_EyE.)
The function sorted can sort also a list of lists / list of tuples.
In [1]: data = [(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4), (1, 1, 5), (1, 1, 6)
...: , (1, 2, 1), (1, 2, 2), (1, 2, 3), (1, 2, 4), (1, 2, 5), (1, 2, 6), (1,
...: 3, 1), (1, 3, 2), (1, 3, 3), (1, 3, 4), (1, 3, 5), (1, 3, 6), (1, 4, 1),
...: (1, 4, 2), (1, 4, 3), (1, 4, 4), (1, 4, 5), (1, 4, 6), (1, 5, 1), (1, 5
...: , 2), (1, 5, 3), (1, 5, 4), (1, 5, 5), (1, 5, 6), (1, 6, 1), (1, 6, 2),
...: (1, 6, 3), (1, 6, 4)]
In [2]: sorted(data)
Out[2]:
[(1, 1, 1),
(1, 1, 2),
(1, 1, 3),
(1, 1, 4),
(1, 1, 5),
(1, 1, 6),
(1, 2, 1),
(1, 2, 2),
(1, 2, 3),
(1, 2, 4),
(1, 2, 5),
(1, 2, 6),
(1, 3, 1),
(1, 3, 2),
(1, 3, 3),
(1, 3, 4),
(1, 3, 5),
(1, 3, 6),
(1, 4, 1),
(1, 4, 2),
(1, 4, 3),
(1, 4, 4),
(1, 4, 5),
(1, 4, 6),
(1, 5, 1),
(1, 5, 2),
(1, 5, 3),
(1, 5, 4),
(1, 5, 5),
(1, 5, 6),
(1, 6, 1),
(1, 6, 2),
(1, 6, 3),
(1, 6, 4)]
If you want to sort the content of the tuples, you can make a new list. You can use a list comprehension.
sorted_tuples = [sorted(element) for element in data] Written as for loop:
result = []
for element in data:
sorted_tuple = sorted(element)
result.append(sorted_tuple)
print(result)
The first example sorts the content of the list.
The second example keeps the order of the list and sorts the content of the tuples.
|