Ejercicio
Función Retorno De Valor
Objectivo
Desarrolla un programa Python en el que la función principal debería verse así:
x = 3
y = 5
print(sum(x, y))
Debes definir la función `sum`, y se llamará desde dentro de la función principal. Como se muestra en el ejemplo, debe aceptar dos números enteros como parámetros y devolver un número entero (la suma de esos dos números).
Ejemplo de ejercicio de Python
Mostrar código Python
# Define the sum function that accepts two integers as parameters
def sum(x, y):
# Return the sum of the two integers
return x + y # This will return the sum of x and y
# Main function to execute the program
def main():
# Initialize x and y as 3 and 5, respectively
x = 3 # x is set to 3
y = 5 # y is set to 5
# Call the sum function with x and y as arguments, and print the result
print(sum(x, y)) # This will print the result of 3 + 5, which is 8
# Call the main function to run the program
main() # This triggers the execution of the sum function and prints the result
Output
8
Código de ejemplo copiado
Comparte este ejercicio de Python