Curso-lenguaje-python/HolaMundo/03_if_ternario.py

10 lines
104 B
Python
Raw Normal View History

"""
Operador ternario
"""
edad = 15
mensaje = "Es mayor" if edad > 17 else "Es menor"
print(mensaje)