How to convert counter object to a list of pairs in Python

2 Answers

0 votes
from collections import Counter

c = Counter(a=2, b=0, c=9, d=5, e=-3)

list_pairs = c.items()

print(list_pairs)


'''
run:
 
dict_items([('c', 9), ('d', 5), ('a', 2), ('b', 0), ('e', -3)])

'''

 



answered Nov 6, 2018 by avibootz
0 votes
from collections import Counter

c = Counter(a=2, b=0, c=9, d=5, e=-3)

list_pairs = c.items()

for item in list_pairs:
    print(item[0], ":", item[1])


'''
run:
 
b : 0
e : -3
d : 5
a : 2
c : 9

'''

 



answered Nov 6, 2018 by avibootz

Related questions

1 answer 184 views
1 answer 159 views
1 answer 180 views
1 answer 185 views
...