EJEMPLOS
""" EJEMPLO OPERADORES """ edad = 10 isPerson = True; if edad > 20 and edad < 35: print("algo") elif (not edad > 20 and edad < 35) and (isPerson): print("otro algo") else print("defecto")