Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please use Python for this program. And I have attached my code for the previous program. Random Number File Reader This assignment assumes you have

Please use Python for this program. And I have attached my code for the previous program. image text in transcribed
image text in transcribed
Random Number File Reader This assignment assumes you have completed Programming Assignment 6, Random Number File Writer. Write another program that reads the random numbers from the random.txt file created in Programming Assignment 6, display the numbers and then display the following data 1. The total of the numbers 2. The number of numbers read from the file. Sample program execution: Pythen 364 Shell e tde Shell Debug Options Window Help Python 3.6.4 (v3.6.4id48eceb, Dec 19 2017, 0:04:45 (MSC v.1900 32 bit (Intel)] on win32 Type "copyright", "credits" or "1icense )-for more information. RESTART: P:/Cmpsc131/Programming Assignment Solutions/PA7RandomNumberFileReaderpy The following numbers were read Erom the random.txt file: 253 121 439 72 354 78 433 71 122 198 58 366 156 14 191 494 312 192 456 The total of the numbers is: 4384 The file contained 20 numbers #Ask the computer to pick up random numbers import random #Explains what is this program for and asked the user to input print ('This program writes random numbers to the random.txt file') n-int (input ('How many numbers would you like to write:') Computer will create a txt file and generates a random number from the given range f open ( ' random . txt ' , ' a ' ) for x in range (n): f.write ( '2d ' %random . randint (1,501)) #Print this after the random number is generated print('%d numbers were written to the random . txt file'%n)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Students also viewed these Databases questions

Question

Understand why the traditional, unstructured interview doesnt work

Answered: 1 week ago

Question

(e) What is the resolution? Pg45

Answered: 1 week ago

Question

7. What decisions would you make as the city manager?

Answered: 1 week ago

Question

8. How would you explain your decisions to the city council?

Answered: 1 week ago