Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Programming Language Expert

CP1404/CP5632 2016 SP2/22/52 Assignment 1 - Shopping List 1.0

Task:

You are to plan and then code a console-based program in Python 3, as described in the following information and sample output. This assignment will help you build skills using selection, repetition, file input/output, exceptions, lists/tuples, functions and string formatting. Do not to define any of your own classes. Assignment 2 will build on this program with more advanced code constructs including classes and a Graphical User Interface (GUI). Work incrementally on this task: complete small parts of it at a time rather than trying to get it all working at once.

 

Program Overview:

This program is a simple shopping list that could also be used for TODOs or similar purposes. The program maintains a list of items in a file, and each item has:

  • name, price, priority (1, 2 or 3), whether it is required or completed

Users can choose to see the list of required items or completed items, including a total of the (estimated) price of all of those items. The lists will be sorted by priority.

Users can add new items and mark items as completed.

They can't change items from completed to required.

 

Program Functionality Details:

Ensure that your program has the following features, as demonstrated in the sample output below.

Your program should:

  • display a welcome message with your name in it
  • display a menu for the user to choose from
  • return to the menu and loop until the user chooses to quit
  • error-check user inputs as demonstrated in the sample output
  • start by loading a CSV (Comma Separated Values) file of items that are in stock for hire;
    a sample CSV file is provided for you
  • (when the user chooses list) display a neatly formatted list of all the required items with their prices lined up and priorities
  • (when the user chooses show completed) display a similarly formatted list of completed items
  • (when the user chooses add) prompt for the item's name, price and priority, error-checking each of these, then add the item to the list in memory
  • (when the user chooses complete) display the same list of required items, then allow the user to choose one (error-checked), then change that item to completed
    • if no items are required, then a message should be displayed and the user returned to the menu
  • (when the user chooses quit) save the items to the CSV file, overwriting the file contents 

Coding Requirements and Suggestions:

  • Make use of named constants where appropriate.
  • Use functions appropriately for each significant part of the program: this is the divide-and-conquer problem-solving approach. Remember that functions should "do one thing".
    Look for situations where functions can be used to reduce code duplication (e.g. displaying the completed and required lists is very similar).
  • For efficiency, you should only load the items file once. Store the results appropriately in a list of lists that you can pass to any functions that need access to it.
  • Note that the menu choice should handle uppercase and lowercase letters.
  • Use exception handling where appropriate to deal with input errors (including entering numbers and selecting items).
  • Check the rubric carefully to see any other aspects of the coding that you will be assessed on.

Output Requirements:

Sample output from the program is provided below. Ensure that your program matches the sample output including spaces, spelling, and especially the formatting of the item lists. Think of this as helpful guidance as well as training you to be particular and pay attention to detail. The sample output is intended to show the full range of situations including user input error handling.

 

Sample Output:

The following sample run was made using a CSV file that contained:

Fish fingers,12.95,2,r
Metal detector,42.5,3,r
Coffee beans,40.0,1,r

 

Bold greentext below shows user input for this sample.

 

Shopping List 1.0 - by Lindsay Ward

3 items loaded from items.csv

Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>c

No completed items

Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>r

Required items:

0. Coffee beans         mce_markernbsp; 40.00 (1)

1. Fish fingers         mce_markernbsp; 12.95 (2)

2. Metal detector       mce_markernbsp; 42.50 (3)

Total expected price for 3 items: $95.45

Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>M

0. Coffee beans         mce_markernbsp; 40.00 (1)

1. Fish fingers         mce_markernbsp; 12.95 (2)

2. Metal detector       mce_markernbsp; 42.50 (3)

Total expected price for 3 items: $95.45

Enter the number of an item to mark as completed

>>>1*

Fish fingers marked as completed
Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>C

Completed items:

0. Fish fingers         mce_markernbsp; 12.95 (2)

Total expected price for 1 items: $12.95

Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>a

Item name:    (blank spaces entered)

Input can not be blank

Item name: Watch

Price: $not much

Invalid input; enter a valid number

Price: $-50

Price must be >= $0

Price: $50

Priority: low

Invalid input; enter a valid number

Priority: 0

Priority must be 1, 2 or 3
Priority: 2

Watch, $50.00 (priority 2) added to shopping list

Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>M

0. Coffee beans         mce_markernbsp; 40.00 (1)

1. Watch                mce_markernbsp; 50.00 (2)

2. Metal detector       mce_markernbsp; 42.50 (3)

Total expected price for 3 items: $132.50

Enter the number of an item to mark as completed

>>>2

Metal detector marked as completed

Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>m

0. Coffee beans         mce_markernbsp; 40.00 (1)

1. Watch                mce_markernbsp; 50.00 (2)

Total expected price for 2 items: $90.00

Enter the number of an item to mark as completed

>>>two

Invalid input; enter a number

>>>2

Invalid item number

>>>0

Coffee beans marked as completed

Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>M

0. Watch                mce_markernbsp; 50.00 (2)

Total expected price for 1 items: $50.00

Enter the number of an item to mark as completed

>>>0

Watch marked as completed

Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>m

No required items

Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>r

No required items

Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>C

Completed items:

0. Coffee beans         mce_markernbsp; 40.00 (1)

1. Fish fingers         mce_markernbsp; 12.95 (2)

2. Watch                mce_markernbsp; 50.00 (2)

3. Metal detector       mce_markernbsp; 42.50 (3)

Total expected price for 4 items: $145.45
Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>e

Invalid menu choice

Menu:

R - List required items

C - List completed items

A - Add new item

M - Mark an item as completed

Q - Quit

>>>Q

4 items saved to items.csv

Have a nice day :)

At the end of this run, the CSV file contained:

Fish fingers,12.95,2,c
Metal detector,42.5,3,c
Coffee beans,40.0,1,c
Watch,50.0,2,c

Programming Language, Programming

  • Category:- Programming Language
  • Reference No.:- M91956268
  • Price:- $80

Guranteed 48 Hours Delivery, In Price:- $80

Have any Question?


Related Questions in Programming Language

Php amp session managment assignment -this assignment looks

PHP & SESSION MANAGMENT ASSIGNMENT - This assignment looks at using PHP for creating cookies and session management. Class Exercise - Web Project: Member Registration/Login This exercise will cover adding data connectivi ...

1 write a function named check that has three parameters

1. Write a function named check () that has three parameters. The first parameter should accept an integer number, andthe second and third parameters should accept a double-precision number. The function body should just ...

Overviewthis tasks provides you an opportunity to get

Overview This tasks provides you an opportunity to get feedback on your Learning Summary Report. The Learning Summary Report outlines how the work you have completed demonstrates that you have met all of the unit's learn ...

Task - hand execution of arraysoverviewin this task you

Task - Hand Execution of Arrays Overview In this task you will demonstrate how arrays work by hand executing a number of small code snippets. Instructions Watch the Hand Execution with Arrays video, this shows how to ste ...

Task arrays and structsoverviewin this task you will

Task: Arrays and Structs Overview In this task you will continue to work on the knight database to help Camelot keep track of all of their knights. We can now add a kingdom struct to help work with and manage all of the ...

Extend the adworks applicationi add dialogs to allow the

Extend the AdWorks application I. Add Dialogs to allow the user to Add, Edit, Read and Delete a Customer and refresh the view accordingly. 1. The user should be able to select a specific customer from the DataGrid and cl ...

Assignment - horse race meetingthe assignment will assess

Assignment - Horse Race Meeting The Assignment will assess competencies for ICTPRG524 Develop high level object-oriented class specifications. Summary The assignment is to design the classes that are necessary for the ad ...

Assignment - horse race meetingthe assignment will assess

Assignment - Horse Race Meeting The Assignment will assess competencies for ICTPRG524 Develop high level object-oriented class specifications. Summary The assignment is to design the classes that are necessary for the ad ...

Assignmentquestion onegiving the following code snippet

Assignment Question One Giving the following code snippet. What kind of errors you will get and how can you correct it. A. public class HelloJava { public static void main(String args[]) { int x=10; int y=2; System.out.p ...

Question - create a microsoft word macro using vba visual

Question - Create a Microsoft Word macro using VBA (Visual Basic for Applications). Name the macro "highlight." The macro should highlight every third line of text in a document. (Imagine creating highlighting that will ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As