Contact: aviboots(AT)netvision.net.il
41,301 questions
53,811 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 '''