A general-purpose function to search a value in a sorted list.
**Since:** 3.3
## Parameters
-`sorted` : The sorted list.
-`target` : The target element or a function literal that returns a negative integer, zero, or a positive integer as the element is less than, equal to, or greater than the value you want to search.
-`lo` : Default to 0. The lower bound to be searched.
-`hi` : Default to the end of the list. The higher bound to be searched.