How to find the largest three elements in a list with Python

1 Answer

0 votes
import sys 
  
def print3largest(lst): 
  
    size = len(lst) 
    if (size < 3): 
        print("list size < 3") 
        return
      
    third = first = second = -sys.maxsize 
      
    for i in range(0, size): 
        if (lst[i] > first): 
            third = second 
            second = first 
            first = lst[i] 
        elif (lst[i] > second): 
            third = second 
            second = lst[i] 
        elif (lst[i] > third): 
            third = lst[i] 
      
    print("The three largest elements are:", first, second, third) 
  
lst = [5, 2, 9, 6, 12, 7, 8, 3, 1, 0] 

print3largest(lst) 
 
 
 
 
'''
run:
 
The three largest elements are: 12 9 8 
 
'''

 



answered Dec 2, 2021 by avibootz

Related questions

2 answers 196 views
1 answer 340 views
2 answers 161 views
1 answer 186 views
1 answer 219 views
...