I am asking a question about file handling within python.
I am capable of creating a text file which can then be read via python. However, i am trying to create a python Recipe storer and therefore i would need to be able to store recipes (entered through python) with details about ingredients and quantities under records which can be opened and viewed with python. For example:
Two different recipes have been entered by the user, stored within a text document.
The user only wants to open one of these recipes.
How would the program be able to display the recipe which the user wants to open?
Any help would be much appreciated!