Is there an efficiency difference between using and in an if statement and using multiple if statements? In other words, is something like
if expr1 == expr2 and expr3==expr4:
dostuff()
different from an efficiency standpoint then:
if expr1 == expr2:
if expr3 == expr4:
dostuff()
My very basic testing does not reveal a difference, but does someone with more knowledge (or at least more thorough testing) have a definitive answer?