How to find the frequency of all tuple elements in Python

1 Answer

0 votes
from collections import defaultdict

tpl = (1, 4, 9, 0, 1, 1, 2, 4, 5, 5, 7, 5, 8, 5, 9, 3)

frequency = defaultdict(int)
for element in tpl:
	frequency[element] += 1

print(dict(frequency))



'''
run:

{1: 3, 4: 2, 9: 2, 0: 1, 2: 1, 5: 4, 7: 1, 8: 1, 3: 1}

'''

 



answered Dec 2, 2022 by avibootz

Related questions

...