Created
April 11, 2023 10:41
-
-
Save hcosta/fb5bffde2671afdcf14355f51774f170 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def division(numero1, numero2): | |
resultado = numero1 / numero_2 | |
return resultado | |
numero1 = input("Ingresa un número: " | |
numero2 = input("Ingresa otro número: ") | |
resultado = dividir_dos_numeros(numero1, numero2) | |
print("El resultado es: ", resultado) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment