Contact: aviboots(AT)netvision.net.il
39,862 questions
51,784 answers
573 users
from operator import * a = 1 b = 1 print(is_not(a,b)) # if a is not b a = 0 b = 3 print(is_not(a,b)) # if a is not b ''' run: False True '''