Contact: aviboots(AT)netvision.net.il
39,940 questions
51,877 answers
573 users
from collections import Counter c = Counter(a = 5, b = 3, c = 2, d = -3, e = 0) lst = list(c.elements()) print(lst) ''' run: ['a', 'a', 'a', 'a', 'a', 'b', 'b', 'b', 'c', 'c'] '''