Answers for "find unique char in string python"

2

find unique char in string python

In [1]: list(set('aaabcabccd'))
Out[1]: ['a', 'c', 'b', 'd']
Posted by: Guest on March-03-2021

Code answers related to "find unique char in string python"

Python Answers by Framework

Browse Popular Code Answers by Language