Download presentation
Presentation is loading. Please wait.
Published byDamian Peters Modified over 9 years ago
1
Python File Handling
2
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:
3
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
4
Example: Python Here is part of the solution to the problem, you need to complete it.
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.