EJEMPLOS

""" EJEMPLO OPERADORES """
edad = 10
isPerson = True;

if edad > 20:
	print("algo")
elif (edad >= 20 and edad <= 35 and edad != 39) and (isPerson):
	print("otro algo")
else 
	print("defecto")