I've no idea about python, but from an algorithmic point of view maybe I can add something. In your example your list is monotonically increasing (sorted). If that is always true of your list, then a small optimization might be to stop iterating once you've reached a number larger than 4.
If your list always has few numbers lower than 4, this will be a great optimization, but if number of items before and after the target number is random, then this improvement isn't reliable.
In that case, you might want to search the list by partitioning it. Test if middle element is larger than 4. If it is larger, throw away upper half, otherwise throw away lower half. Do the same thing on the new half-length list. You need to deal with even and odd numbers and with the case when you have only 1 or 2 items left in the list-segment. For a large list, this should reduce the number of tests significantly.