Contact: aviboots(AT)netvision.net.il
40,772 questions
53,160 answers
573 users
a = 'python' b = 'c++' c = 13 d = True if 'c++' in (a, b, c, d): print('yes') else: print('no') ''' run: yes '''