I keep on getting this error on the second last line of my program , and I am not sure why , all I am doing is reading a line from a text file.
if (items[0]) == 86947367 :
        with open("read_it.txt") as text_file:
            try:
                price = int(text_file.readlines()[2])
            except ValueError:
                print("error")
            else:
                new_price = int(price * (items2[0]))
                print("£",new_price)
                price_list.append(new_price)
                product = (text_file.readline()[1])
                print(product)
 
     
     
    