Ejercicio
Función De Doble Valor
Objectivo
Desarrollar una función Python llamada "double" para calcular y devolver un número entero que sea el doble del valor de entrada. Por ejemplo, double(7) debería devolver 14.
Ejemplo de ejercicio de Python
Mostrar código Python
# Define the function double which calculates and returns twice the input integer
def double(num):
return num * 2 # Return the double of the input number
# Main function to call double and display the result
def main():
result = double(7) # Call the double function with the number 7
print("The double of 7 is {}".format(result)) # Print the result
# Call the main function to execute the program
main()
Output
The double of 7 is 14
Código de ejemplo copiado
Comparte este ejercicio de Python