Objectivo
Desarrolla un programa Python que solicite al usuario que ingrese tres números y luego muestre su producto. La primera línea debe ser un comentario con tu nombre y apellido. DEBE verse de la siguiente manera:
# Tu nombre y apellido
Ingresa el primer número a multiplicar:
12
Ingresa el segundo número a multiplicar:
23
Ingresa el tercer número a multiplicar:
2
Ejemplo Ejercicio Python
Mostrar Código Python
# Prompt the user to enter the first number
num1 = float(input("Enter the first number to multiply: "))
# Prompt the user to enter the second number
num2 = float(input("Enter the second number to multiply: "))
# Prompt the user to enter the third number
num3 = float(input("Enter the third number to multiply: "))
# Calculate the product of the three numbers
product = num1 * num2 * num3
# Display the result
print(f"The product of {num1}, {num2}, and {num3} is {product}")
Output
Enter the first number to multiply:
12
Enter the second number to multiply:
23
Enter the third number to multiply:
2
The product of 12.0, 23.0, and 2.0 is 552.0
Código de Ejemplo copiado
Comparte este ejercicios Python