In Python IDLE write a program that writes a series of random numbers to file. Each random number should be in the range of 1 through 500. The application should let the user specify how many random numbers the file will hold
In Python IDLE write a program that writes a series of random numbers to file. Each random number should be in the range of 1 through 500. The application should let the user specify how many random numbers the file will hold
This exercise assumes you have completed you have completed program exercise 7 random number file writer. Write another program that reads the random numbers from the file, displayed the numbers, then displays the following data:
Exception Handling: Both programs should use Try and Except Clauses to handle IOError, ValueError, and unspecified error exceptions. Be sure to test your programs for invalid cases. For example , try running the second program to read the file when it doesn’t exist or manually put bad data in the file and see what happens.
Step by step
Solved in 2 steps