SyntaxFix
Write A Post
Hire A Developer
Questions
We can easily find xor of two variables by the using:
def xor(a,b): return a !=b
Example:
xor(True,False) >>> True