views:

94

answers:

1

Are there any Python built-ins or widely used Python libraries to perform a search in a sorted sequence?

+8  A: 

bisect is part of the standard library - is that the sort of thing you're looking for?

Daniel Roseman