Contact: aviboots(AT)netvision.net.il
41,219 questions
53,721 answers
573 users
from collections import Counter c = Counter(a=2, b=0, c=9, d=5, e=-3) st = set(c) print(st) ''' run: {'b', 'c', 'a', 'd', 'e'} '''