“Comment trouver le plus grand nombre dans le tableau à Python” Réponses codées

Comment trouver le plus grand nombre dans le tableau à 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

Trouvez la valeur la plus élevée dans le tableau 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

Réponses similaires à “Comment trouver le plus grand nombre dans le tableau à Python”

Questions similaires à “Comment trouver le plus grand nombre dans le tableau à Python”

Plus de réponses similaires à “Comment trouver le plus grand nombre dans le tableau à Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code