Question Description
Lab 4
Attached Files:
- lab4 help.txt (2.146 KB)
- lab4-example.py (1.397 KB)
- LAB4-Day1.py (921 B)
- LAB4-Day2.py (1,021 B)
- LAB4-Day3.py (926 B)
Objectives
- Doing more with lists/dictionaries and introducing files.
Overview
- This will extends the previous lab to allow the user to display the resulting story with several potential "dynamic" modifications to their input.
Instructions
- You should first create two files, one for the story template and one for the list of words.
- Your program should read a "story template" and "word dictionary" from input files and write the output to a file to the screen.
- The filenames and "conversion type" (see below) should be read from the "command line" when the program is launched.
- For example:
LAB4.py 1 story_template.txt input_words.txt
- If the user launched the program without the correct parameters, a usage message should be shown (such as):
- USAGE: LAB4.py <CONVERSION> <STORY_TEMPLATE> <INPUT_DICTIONARY>
CONVERSION: 1 for UPPER CASE, 2 for LOWERCASE, etc…
- USAGE: LAB4.py <CONVERSION> <STORY_TEMPLATE> <INPUT_DICTIONARY>
Conversion Types (of just your input words, not the whole story):
-
- All UPPER CASE
- All lower case
- All Capitalized Case
- As entered (i.e., no changes)
NOTES:
- For more information on strings:
-
- See http://www.diveinto.org/python3/strings.html
- And specifically http://www.diveinto.org/python3/strings.html#common-string-methods for manipulations you can perform on strings.
- For more information on files:
-
-
- Writing: http://www.diveintopython3.net/files.html#writing
- Reading one line at a time: http://www.diveintopython3.net/files.html#for
-
-
- (The Sample I provided reads the entire file into memory. Though this is fine for small files, a very large file would be better processed one line at a time.)
-
-
- Remember: You can make up your own story, or just grab a short piece of text from somewhere and edit it into your program, deleting the words you intend on filling in with your own. But In the interest of Academic Integrity, be sure to cite the source of any text you choose to grab!
Example input files:
Story file:
I have a dog named {PETNAME} who barks a lot
and loves to {ACTIVITY} every day.
Words dictionary:
PETNAME=Spot
ACTIVITY=Bark
Submit
- Your final Python program .py file and associated input files.
-
- Remember it should be able to run as a "command-line" application.
- Please call your program LAB4.py and be sure to include your name in the program comments.
Our website has a team of professional writers who can help you write any of your homework. They will write your papers from scratch. We also have a team of editors just to make sure all papers are of HIGH QUALITY & PLAGIARISM FREE. To make an Order you only need to click Ask A Question and we will direct you to our Order Page at WriteDemy. Then fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.
Fill in all the assignment paper details that are required in the order form with the standard information being the page count, deadline, academic level and type of paper. It is advisable to have this information at hand so that you can quickly fill in the necessary information needed in the form for the essay writer to be immediately assigned to your writing project. Make payment for the custom essay order to enable us to assign a suitable writer to your order. Payments are made through Paypal on a secured billing page. Finally, sit back and relax.
About Writedemy
We are a professional paper writing website. If you have searched a question and bumped into our website just know you are in the right place to get help in your coursework. We offer HIGH QUALITY & PLAGIARISM FREE Papers.
How It Works
To make an Order you only need to click on “Place Order” and we will direct you to our Order Page. Fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.
Are there Discounts?
All new clients are eligible for 20% off in their first Order. Our payment method is safe and secure.
lab4 help.txt