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