python file handling. in all the programs you have made so far when program is closed all the data...

Post on 29-Dec-2015

212 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

PythonFile Handling

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.

top related