Question: 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!