Python File Handling
In all the programs you have made so far when program is closed all the data is lost, but what if you want to keep the data to use later? This is where file handling comes in. Python allows you to read data in from and save data to external text files. We use this symbol to represent the storing of data in a flowchart:
Example: Flowchart Design and code a program that asks the user to input their name and age and stores the data in a text file. Start End INPUT Name INPUT Age SAVE Name + Age
Example: Python Here is part of the solution to the problem, you need to complete it.