“Cómo encontrar el mayor número en la matriz en Python” Código de respuesta

Cómo encontrar el mayor número en la matriz en Python

#Initialize array     
arr = [25, 11, 7, 75, 56];     
     
#Initialize max with first element of array.    
max = arr[0];    
     
#Loop through the array    
for i in range(0, len(arr)):    
    #Compare elements of array with max    
   if(arr[i] > max):    
       max = arr[i];    
           
print("Largest element present in given array: " + str(max));   
Delta Sierra

Encuentre el mayor valor en la array python

// you can just use the max function on an array to find the max
arr = [1, 7, 3, 9]
max(arr) // returns 9 because it is the largest
Old-fashioned Okapi

Respuestas similares a “Cómo encontrar el mayor número en la matriz en Python”

Preguntas similares a “Cómo encontrar el mayor número en la matriz en Python”

Más respuestas relacionadas con “Cómo encontrar el mayor número en la matriz en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código