Python Insert to Sorted List

import bisect 
a = [1, 2, 4, 5] 
bisect.insort(a, 3) 
print(a)
Clumsy Capuchin