trouver un char Unique dans String Python

In [1]: list(set('aaabcabccd'))
Out[1]: ['a', 'c', 'b', 'd']
Anxious Armadillo