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