Objectivo
Desarrolla un programa Python que solicite al usuario dos números y muestre su división si el segundo número no es cero; de lo contrario, mostrará "La división por cero no es posible".
Ejemplo Ejercicio Python
Mostrar Código Python
# Prompt the user to enter the first number
num1 = float(input("Please enter the first number: "))
# Prompt the user to enter the second number
num2 = float(input("Please enter the second number: "))
# Check if the second number is not zero
if num2 != 0:
# Calculate and display the division
print(f"The result of dividing {num1} by {num2} is {num1 / num2}")
else:
# Display a message if the second number is zero
print("Division by zero is not possible")
Output
Case 1:
Please enter the first number: 10
Please enter the second number: 2
The result of dividing 10.0 by 2.0 is 5.0
Case 2:
Please enter the first number: 10
Please enter the second number: 0
Division by zero is not possible
Código de Ejemplo copiado
Comparte este ejercicios Python