Contact: aviboots(AT)netvision.net.il
39,868 questions
51,791 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 '''