Ejercicio
Función De Suma De Matrices
Objectivo
Desarrolla un programa Python para calcular la suma de los elementos de una matriz. La función principal debería verse así:
def main():
example = [20, 10, 5, 2]
print("La suma de la matriz de ejemplo es {}".format(sum_elements(example)))
Debes definir la función `sum_elements`, y se llamará desde dentro de la función principal. Como se muestra en el ejemplo, debe aceptar una matriz como parámetro y devolver la suma de sus elementos.
Ejemplo de ejercicio de Python
Mostrar código Python
# Define the function sum_elements which calculates the sum of the elements in the array
def sum_elements(arr):
total = 0 # Initialize the total sum to 0
for num in arr: # Loop through each number in the array
total += num # Add the number to the total sum
return total # Return the total sum
# Main function to call sum_elements and display the result
def main():
example = [20, 10, 5, 2] # Define the example array
# Print the sum of the elements in the example array
print("The sum of the example array is {}".format(sum_elements(example))) # Call the function and format the result
# Call the main function to execute the program
main()
Output
The sum of the example array is 37
Código de ejemplo copiado
Comparte este ejercicio de Python