Question
Python 3.7.2 Average of Numbers with Exception Handling Assume that a file containing a series of integers is named numbers.txt and exists on the computers
Python 3.7.2
Average of Numbers with Exception Handling
Assume that a file containing a series of integers is named numbers.txt and exists on the computers disk. Download this file which is attached. Write a program that calculates the average of all the numbers stored in the file. Make sure that the program should ask a file name to read. Modify the program that you wrote so it handles the following exceptions:
It should handle any IOError exceptions that are raised when the file is opened and data is read from it.
It should handle any ValueError exceptions that are raised when the items that are read from the file are converted to a number. Check and fix the file by removing non-numeric data. There are two non-numeric data cat and dog.
numbers.txt:
22 14 39 109 87 -99 333 78 65 76 292 282 239 cat 392 98 786 981 388 -987 -12 -45 383 381 1 23 40 dog
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started