Temukan char unik di string python

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