This is quite possible the most perplexing piece of code I've ever seen, and i can't seem to figure out what's wrong with it.
a = 5
if a == 0 or 1 :
print "hi"
When run, it prints "hi" which by all means confuses me. Please provide some insight onto how i can make it not return hi and behave normally. (it should be returning nothing)