Chapter 7 Files and Exceptions

Slides:



Advertisements
Similar presentations
An Introduction to Programming with C++ Fifth Edition Chapter 13 Sequential Access Files.
Advertisements

Files in Python The Basics. Why use Files? Very small amounts of data – just hardcode them into the program A few pieces of data – ask the user to input.
CHAPTER 6 FILE PROCESSING. 2 Introduction  The most convenient way to process involving large data sets is to store them into a file for later processing.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
WEEK EXCEPTION HANDLING. Syntax Errors Syntax errors, also known as parsing errors, are perhaps the most common kind of complaint you get while.
© Copyright 2012 by Pearson Education, Inc. All Rights Reserved. Chapter 13 Files and Exception Handling 1.
November 15, 2005ICP: Chapter 7: Files and Exceptions 1 Introduction to Computer Programming Chapter 7: Files and Exceptions Michael Scherger Department.
Guide to Programming with Python Chapter Seven (Part 1) Files and Exceptions: The Trivia Challenge Game.
STREAMS AND FILES OVERVIEW.  Many programs are "data processing" applications  Read the input data  Perform sequence of operations on this data  Write.
Chapter 8 Data File Basics.
Hossain Shahriar Announcement and reminder! Tentative date for final exam need to be fixed! Topics to be covered in this lecture(s)
Chapter 9 I/O Streams and Data Files
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley STARTING OUT WITH Python Python First Edition by Tony Gaddis Chapter 7 Files.
An Introduction to Programming with C++ Sixth Edition Chapter 14 Sequential Access Files.
Copyright © 2012 Pearson Education, Inc. Publishing as Pearson Addison-Wesley C H A P T E R 8 Lists and Tuples.
Liang, Introduction to Programming with C++, Second Edition, (c) 2010 Pearson Education, Inc. All rights reserved Chapter 13 File Input and.
Copyright © 2012 Pearson Education, Inc. Chapter 5 Loops, File, and Random Numbers.
Pascal Programming Today Chapter 11 1 Chapter 11.
Guide to Programming with Python Chapter Seven Files and Exceptions: The Trivia Challenge Game.
1 Objectives ❏ To understand the differences between text and binary files ❏ To write programs that read, write, and/or append binary files ❏ To be able.
Programming with Microsoft Visual Basic 2008 Fourth Edition Chapter Ten Structures and Sequential Access Files.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
BACS 287 File-Based Programming. BACS 287 Data Hierarchy  Database - Collection of files, relationships, integrity information, etc  Files - All records.
Lecture 4 Python Basics Part 3.
Files in Python The Basics. Why use Files? Very small amounts of data – just hardcode them into the program A few pieces of data – ask the user to input.
LISTS and TUPLES. Topics Sequences Introduction to Lists List Slicing Finding Items in Lists with the in Operator List Methods and Useful Built-in Functions.
Files A collection of related data treated as a unit. Two types Text
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
Files and Streams. Objectives Learn about the classes that support file input/output Understand the concept of abstraction and how it related to the file.
Computer Science: A Structured Programming Approach Using C1 Objectives ❏ To understand the differences between text and binary files ❏ To write programs.
Review: A Computational View Programming language common concepts: 1. sequence of instructions -> order of operations important 2. conditional structures.
FILES AND EXCEPTIONS Topics Introduction to File Input and Output Using Loops to Process Files Processing Records Exceptions.
2.4 Exceptions n Detects try { //code that may raise an exception and/or set some condition if (condition) throw exceptionName; //Freq. A string } n Handles.
Chapter 14: Sequential Access Files
Microsoft Visual Basic 2005: Reloaded Second Edition
Topic: File Input/Output (I/O)
Topics Designing a Program Input, Processing, and Output
Chapter 8 Text Files We have, up to now, been storing data only in the variables and data structures of programs. However, such data is not available.
Taken from notes by Dr. Neil Moore & Dr. Debby Keen
Python’s input and output
Starting Out with Programming Logic & Design
Exceptions and files Taken from notes by Dr. Neil Moore
Chapter 14: Exception Handling
Files and Streams Lect3 CT1411.
File Handling Programming Guides.
Topics Introduction to File Input and Output
Python’s Errors and Exceptions
Programming Logic and Design Fourth Edition, Comprehensive
Using files Taken from notes by Dr. Neil Moore
Exceptions and files Taken from notes by Dr. Neil Moore
An Introduction to Structured Program Design in COBOL
CISC101 Reminders Quiz 2 graded. Assn 2 sample solution is posted.
Topics Introduction Hardware and Software How Computers Store Data
Chapter Four UNIX File Processing.
ERRORS AND EXCEPTIONS Errors:
(Oops! When things go wrong)
Using Text Files in Python
Cmdlets “Command-lets”
Topics Sequences Introduction to Lists List Slicing
Fundamentals of Python: First Programs
CS190/295 Programming in Python for Life Sciences: Lecture 3
CIS16 Application Development and Programming using Visual Basic.net
Topics Designing a Program Input, Processing, and Output
Topics Sequences Lists Copying Lists Processing Lists
Topics Introduction to File Input and Output
Topics Designing a Program Input, Processing, and Output
Introduction to Computer Science
Winter 2019 CISC101 4/29/2019 CISC101 Reminders
Topics Sequences Introduction to Lists List Slicing
Topics Introduction to File Input and Output
Presentation transcript:

Chapter 7 Files and Exceptions STARTING OUT WITH Python First Edition by Tony Gaddis

7.1 Introduction to File Input and Output Concept: When a program needs to save data for later use, it writes the data in a file. The data can be read from the file at a later time.

7.1 Introduction to File Input and Output Terms Saving data in a file = “writing data to” the file Output file = file that data is written to Retrieving data from a file = “reading data from” the file Input file = file that data is read from

7.1 Introduction to File Input and Output Types of Files Two types of files: Text file - contains data that has been encoded as text, ASCII or Unicode Binary file - contains data that has not been converted to text

7.1 Introduction to File Input and Output File Access Methods Two ways to access data stored in files: Sequential Access - access data from the beginning of the file to the end of the file Direct (random) Access- directly access any piece of data in the file without reading the data that comes before it

7.1 Introduction to File Input and Output Opening a File The open function: General format: file_variable = open(filename, mode) file_variable is the name of the variable that will reference the file object filename is a string specifying the name of the file mode is a string specifying the mode (reading, writing, etc.)

7.1 Introduction to File Input and Output Table 7-1 Some of the Python file modes customer_file = open(‘customers.txt’, ‘r’) sales_file = open(‘sales.txt’, ‘w’)

7.1 Introduction to File Input and Output Writing Data to a File Method - function that belongs to an object perform operation using that object file_variable.write(string) file_variable – variable that references a file object write - file object used to write data to a file string - string that will be written to the file

7.1 Introduction to File Input and Output Program 7-1 (file_write.py)

7.1 Introduction to File Input and Output Reading Data from a File … read method Program 7-2 (file_read.py)

7.1 Introduction to File Input and Output Reading Data from a File … readline method Program 7-3 (line_read.py)

7.1 Introduction to File Input and Output Concatenating a Newline to a String myfile.write(name1 + ‘\n’) Reading a String and Stripping the Newline From It line1 = infile.readline() # Strip the \n from the string line1 = line1.rstrip(‘\n’)

7.1 Introduction to File Input and Output Appending Data to an Existing File ‘a’ mode to open an output file in append mode If the file already exists, it will not be erased If the file does not exist, it will be created When data is written to the file, it will be written at the end of the file’s current contents.

7.1 Introduction to File Input and Output Writing and Reading Numeric Data Numbers must be converted to strings before they can be written Built-in function, str, converts a value to a string outfile.write(str(num1) + ‘\n’)

7.1 Introduction to File Input and Output Writing and Reading Numeric Data infile = open(‘number.txt’, ‘r’) # readline method reads strings string_input = infile.readline() # built-in function int converts string to an integer value = int(string_input) Figure 7-15 The numbers.txt file viewed in Notepad

7.1 Introduction to File Input and Output Writing and Reading Numeric Data Program 7-7 (read_numbers.py)

7.2 Using Loops to Process Files Concept: Files usually hold large amounts of data, and programs typically use a loop to process the data in a file.

7.2 Using Loops to Process Files Reading a File with a Loop and Detecting the End of the File Read the contents of a file without knowing the number of items that are stored in the file readline method returns an empty string (‘ ‘) when it attempts to read beyond the end of file Priming read is required to test loop condition, if using a while loop

7.2 Using Loops to Process Files Reading a File with a Loop and Detecting the End of the File Figure 7-17 General logic for detecting the end of a file

7.2 Using Loops to Process Files Using Python’s for Loop to Read Lines for loop automatically reads a line of text from the input file No special condition or testing is needed No priming read is needed Automatically stops when the end of file is reached for variable in file_object: statement etc.

7.2 Using Loops to Process Files Using Python’s for Loop to Read Lines Program 7-10 (read_sales2.py)

7.3 Processing Records Concept: The data that is stored in a file is frequently organized in records. A record is a complete set of data about an item, and a field is an individual piece of data within a record.

7.3 Processing Records A file’s data is organized into records and fields Record – a complete set of data that describes one item Field – a single piece of data within a record Figure 7-19 Records in a file

7.3 Processing Records File manipulations Create an employee records file Read an employee records file Add records to a file Search for a record in a file Modify a record in a file Delete a record in a file

7.3 Processing Records Creating an employee records file … employee.txt Get the total number of employees Open the file for writing For each employee Get the data for an employee Pad each field with newline character Write the employee record to the file Close the file

7.3 Processing Records Creating an employee records file … employee.txt Program 7-13 (save_emp_records.py)

7.3 Processing Records Reading an employee records file … employee.txt Open the file for reading Read the first line from file While NOT end-of-file Read employee record Strip the newlines from the each field Display employee record Close the file

7.3 Processing Records Reading an employee records file … employee.txt Program 7-14 (read_emp_records.py)

7.3 Processing Records Add records to a file … coffee.txt Set flag to Yes Open the file for appending While flag is Yes Get coffee record Append coffee record Determine whether user wants to add another record Close the file

Add records to a file … coffee.txt 7.3 Processing Records Add records to a file … coffee.txt Program 7-15 (add_coffee_record.py)

7.3 Processing Records Searching for a record in a file … coffee.txt Set a flag to False Get the search value Open the file for reading Read the first line from file While NOT end-of-file Read coffee record Strip the newlines from the each field Determine whether the record is a match to search value If match - Set flag to True Read the next line from the file Close the file If flag is False – Display message “Not Found”

7.3 Processing Records Searching for a record in a file … coffee.txt Program 7-17 (search_coffee_records.py)

7.3 Processing Records Modify a record in a file … coffee.txt Set a flag to False Get the search value Open the original file for reading Open a temporary file for writing Read the first line from file While NOT end-of-file Read coffee record Strip the newlines from the each field Determine whether the record is a match to search value If match – Write modified record to temporary file; Set flag to True If NOT match – Write current record to temporary file Read the next line from the file Close the original file Close the temporary file Delete original file Rename temporary to the original file name If flag is True – Display message “File updated” If flag is False – Display message “Not Found”

os.rename(temporary_file_name, original_file_name) 7.3 Processing Records Modify a record in a file … coffee.txt Requires a temporary file Copy all record from existing file to temporary file BUT do not copy the contents of the modified record Write the new data for the modified record Delete the original file … Import Python’s os module Use the remove function os.remove(original_file_name) Rename the temporary file to the original file name … Use the rename function os.rename(temporary_file_name, original_file_name)

7.3 Processing Records Modify a record in a file … coffee.txt Import os module Set a flag to False Get the search value Open the original file for reading Open a temporary file for writing Read the first line from file While NOT end-of-file Read coffee record Strip the newlines from the each field Determine whether the record is a match to search value If match – Write modified record to temporary file; Set flag to True If NOT match – Write current record to temporary file Read the next line from the file Close the original file Close the temporary file Delete original file Rename temporary to the original file name If flag is True – Display message “File updated” If flag is False – Display message “Not Found”

7.3 Processing Records Modify a record in a file … coffee.txt Program 7-18 (modify_coffee_records.py)

7.3 Processing Records Modify a record in a file … coffee.txt Program 7-18 (cont.) (modify_coffee_records.py) 7-37

7.3 Processing Records Deleting a record in a file … coffee.txt Import os module Set a flag to False Get the search value Open the original file for reading Open a temporary file for writing Read the first line from file While NOT end-of-file Read coffee record Strip the newlines from each field Determine whether the record is a match to search value If match –Set flag to True If NOT match – Write current record to temporary file Read the next line from the file Close the original file Close the temporary file Delete original file Rename temporary to the original file name If flag is True – Display message “File updated” If flag is False – Display message “Not Found”

7.3 Processing Records Deleting a record in a file … coffee.txt Program 7-19 (delete_coffee_record.py)

Program 7-19 (cont.) (delete_coffee_record.py) 7-40

7.4 Exceptions Concept: An exception is an error that occurs while a program is running, causing the program to abruptly halt. You can use the try/exception statement to gracefully handle exceptions.

7.4 Exceptions Run time error Causes program to abruptly halt Error message is displayed … traceback – information regarding the cause of the exception For example: ZeroDivisionError - division by zero IOError – file specified does not exist

ZeroDivisionError - division by zero 7.4 Exceptions ZeroDivisionError - division by zero Program 7-20 (division.py)

IOError – file specified does not exist 7.4 Exceptions IOError – file specified does not exist Program 7-22 (display_file.py)

7.4 Exceptions Exception handler prevents the program from abruptly crashing Use the try/except statement try: statement etc. except ExceptionName: try block except clause handler

7.4 Exceptions When try/except statement executes, the statements in the try block begin to execute: If a statement in the try block raises an exception that is specified by the ExceptionName in an except clause, then the handler that immediately follows the except clause executes. Then, the program resumes execution with the statement immediately following the try/except statement. If a statement in the try block raises an exception that is not specified by the ExecptionName in an except clause, then the program will halt with a traceback error message. If the statements in the try block execute without raising an exception, then any except clauses and handlers in the statement are skipped and the program resumes execution with the statements immediately following the try/except statement.

7.4 Exceptions Figure 7-20 Sequence of events in the try/except statement

7.4 Exceptions Program 7-23 (sales_report.py)

Chapter 7 Files and Exceptions QUESTIONS ?