“Como encontrar o maior número em matriz no Python” Respostas de código

Como encontrar o maior número em matriz no 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

Encontre o maior valor no Python da Array

// 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

Respostas semelhantes a “Como encontrar o maior número em matriz no Python”

Perguntas semelhantes a “Como encontrar o maior número em matriz no Python”

Mais respostas relacionadas para “Como encontrar o maior número em matriz no Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código