Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
n = 3 x = 4 y = 5 z = 6 if n in (x, y, z): print('found') else: print('not found') ''' run: not found '''
n = 3 x = 4 y = 3 z = 6 if n in (x, y, z): print('found') else: print('not found') ''' run: found '''