I want to count how many characters are there in a string but not occurences. For example:
test_list=("aabbccddee")
I want the result to be 5 because there are 5 characters:
(a,b,c,d,e)
I tried using len function and count and also
from collections import defaultdict