Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In python, Write a program that reads a file containing a text (input.txt). Read each line and send it to the output file (output.txt), preceded

In python,

Write a program that reads a file containing a text (input.txt). Read each line and send it to the output file (output.txt), preceded by line numbers. If the input file is:5 pts

Mary had a little lamb

Whose fleece was white as snow.

And everywhere that Mary went,

The lamb was sure to go!

Then the program produces the output file

/* 1 */ Mary had a little lamb

/* 2 */ Whose fleece was white as snow.

/* 3 */ And everywhere that Mary went,

/* 4 */ The lamb was sure to go!

Your code with comments

A screenshot of the execution and print out of the output.txt

Repeat Question, but allow the user to specify the file name on the command-line. If the user doesnt specify any file name, then prompt the user for the name.Note: IDLE does not have a way to run a program from the command line. Youll need to copy your program to the Python37 directory along with the input.txt file to execute. Go to the command prompt (CMD) and change directory to Python37.5 pts

Your code with comments

A screenshot of the execution

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

Advanced Database Systems

Authors: Carlo Zaniolo, Stefano Ceri, Christos Faloutsos, Richard T. Snodgrass, V.S. Subrahmanian, Roberto Zicari

1st Edition

155860443X, 978-1558604438

More Books

Students also viewed these Databases questions

Question

How flying airoplane?

Answered: 1 week ago

Question

=+ Are they breakable for any reason?

Answered: 1 week ago

Question

=+When and under what circumstances are contracts renegotiated?

Answered: 1 week ago