Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You will write a file called file.py which will take at least2 command line arguments. One argument is the name of a file, onthe argument

You will write a file called "file.py" which will take at least2 command line arguments. One argument is the name of a file, onthe argument is the way in which you want to interact with the file(read or write), and, if writing to a file, the desired contents ofthe files as the rest of the command line arguments.

The program should be executed in one of the two followingways:

python file.py my_file.txt -r

should open the file my_file.txt in read mode and print thecontents of the file to the terminal.

python file.py my_file.txt -w Write this contentto file

should open the file my_file.txt in write mode and write "Writethis content to the file" as the content.

You can use sys.argv to access the command line arguments fromwithin your python program.

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

Step: 3

blur-text-image

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

Management Accounting Information for Decision-Making and Strategy Execution

Authors: Anthony A. Atkinson, Robert S. Kaplan, Ella Mae Matsumura, S. Mark Young

6th Edition

137024975, 978-0137024971

Students also viewed these Programming questions