How to insert elements into a list in sorted order with Python

2 Answers

0 votes
import bisect      

lst = [9, 6, 2, 1]

slst = []      

for i in lst:          
    bisect.insort(slst, i)          
    
print(slst)    



'''
run:
    
[1, 2, 6, 9]

'''

 



answered May 13, 2019 by avibootz
0 votes
import bisect      

lst = [9, 6, 2, 1, 7, 2, 2, 1, 8]

slst = []      

for i in lst:          
    bisect.insort(slst, i)          
    
print(slst)    



'''
run:
    
[1, 1, 2, 2, 2, 6, 7, 8, 9]

'''

 



answered May 13, 2019 by avibootz
...