Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,955 questions

51,897 answers

573 users

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

2 Answers

0 votes
import sys 
   
def print3smallest(lst): 
    size = len(lst) 
    
    if (size < 3):
        printf("list size < 3")
        return
    
    first = sys.maxsize; second = sys.maxsize; third = 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 smallest elements are:", first, second, third)
    
   
lst = [5, 27, 9, 6, 1, 12, 7, 8, 33, 10, 0] 
print3smallest(lst)
 

 
     
'''
run:
     
The three smallest elements are: 0 1 5
            
'''

 



answered Dec 17, 2021 by avibootz
0 votes
import sys 
   
def print3smallest(lst): 
    size = len(lst) 
    
    if (size < 3):
        printf("list size < 3")
        return
    
    lst.sort()
    
    print("The three smallest elements are:", lst[0], lst[1], lst[2])
    
   
lst = [5, 27, 9, 6, 1, 12, 7, 8, 33, 10, 0] 
print3smallest(lst)
 

 
     
'''
run:
     
The three smallest elements are: 0 1 5
            
'''

 



answered Dec 17, 2021 by avibootz

Related questions

...