I was wondering if there was a way of telling if two numbers were both above 0. I was thinking of using an elif statement but I wasn\'t sure if that would work.
elif
Use boolean operators to test more than one condition, here the and operator does what you want:
and
if x > 0 and y > 0: # x and y are both over 0.
Just for fun, here's another method:
if min(x, y) > 0: # x any y are both over 0