Skip to content
Advertisement

How to exact price from txt file based on the product input?

I’m fairly new to python and can’t solve this issue (I have already searched extensively)

My aim is to complete a shopping program where the user inputs the product which the program then reads the associated txt file and returns the items price.

This is my current code:

JavaScript

The current output i get if a product that is input that does exist in the file:

JavaScript

The current output i get if a product that is input that does not exist in the file:

JavaScript

Any help on this is greatly appreciated!

Advertisement

Answer

In the below line, the text_file is read as an iterable and becomes empty once all the items in it are accessed

JavaScript

A better approach would be to read all the lines into an list variable and then process them from there. Ideally construct a dictionary of name:price pairs and then query the dictionary to get the price for a product name.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement