How to convert counter object to set in Python

1 Answer

0 votes
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'}

'''

 



answered Nov 6, 2018 by avibootz

Related questions

2 answers 228 views
1 answer 158 views
1 answer 183 views
1 answer 144 views
1 answer 185 views
1 answer 163 views
...