Contact: aviboots(AT)netvision.net.il
41,467 questions
54,014 answers
573 users
s = 'python' chars = set('abcdef') if any((ch in chars) for ch in s): print('found') else: print('not found') ''' run: not found '''