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

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 Programming Questions!