10 lines
104 B
Python
10 lines
104 B
Python
"""
|
|
Operador ternario
|
|
"""
|
|
|
|
edad = 15
|
|
|
|
mensaje = "Es mayor" if edad > 17 else "Es menor"
|
|
|
|
print(mensaje)
|