Contact: aviboots(AT)netvision.net.il
39,938 questions
51,875 answers
573 users
s = 'python programming language' chars = 'poa' l = [] for ch in s: if ch not in chars: l.append(ch) s = ''.join(l) print(s) ''' run: ythn rgrmming lnguge '''