Multiple Conditions

if ((x > 7) and (x < 10)):

print(x)

if ((x >= 12) or (x < 0)):

print(x)

if not (x >=5):

print(x)