I have this code:
def binary_search(list, item):
    low = 0
    high = len(list)-1
    
    while low <= high:
        mid = (low + high)/2
        guess = list[mid]
        
        if guess == item:
            return mid
        if guess > item:
            high = mid - 1
        else:
            low = mid +1
    return None
my_list = [1,3,5,7,9]
print binary_search(my_list, 3)
I want the code to perform a binary search of my_list, looking for the value 3 and returning its index.
But I get a syntax error from line 19: print binary_search(my_list, 3)
What is wrong with the code?
 
     
    