Contact: aviboots(AT)netvision.net.il
40,772 questions
53,159 answers
573 users
a = 'python' b = 'c++' c = 13 d = True if all(item is not None for item in [a, b, c, c]): print('All the variables are NOT none') else: print('At least one of the variables is: none') ''' run: Multiple variables are '''