Este código solicita 3 números al usuario, calcula el término medio de 3 números y luego lo muestra en la salida.
a = int(input("Ingrese el primer número: "))
b = int(input("Ingrese el segundo número: "))
c = int(input("Ingrese el tercer número: "))
if a < b:
x = a
a = b
b = x
if a < c:
x = a
a = c
c = x
if b < c:
x = b
b = c
c = x
print("El término medio es:", b)
Versión simplificada:
a, b, c = sorted(map(int, input("Ingrese tres números: ").split()))
print("El término medio es:", b)
Pueder ir al artículo principal:
Códigos Sencillos hechos en Python
Thank you for your sharing. I am worried that I lack creative ideas. It is your article that makes me full of hope. Thank you. But, I have a question, can you help me?
Your point of view caught my eye and was very interesting. Thanks. I have a question for you.