Znajdź unikalny char w Python String

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