Contact: aviboots(AT)netvision.net.il
40,875 questions
53,283 answers
573 users
from collections import OrderedDict s = "pyythoon" s = "".join(OrderedDict.fromkeys(s)) print(s) ''' run: python '''
s = "pyythoon" s = "".join(set(s)) print(s) ''' run: onhytp '''
s = "pyythoon" s = ''.join(sorted(set(s), key=s.index)) print(s) ''' run: python '''