PYTHON create a program for the following:
Your friend Susie has a problem. She goes grocery shopping on a weekly basis, and always seems to forget to buy items that she needs. You have suggested that she make a list before she goes, and have offered to write a program to help Susie produce her list.
The program should define at least 2 functions to help perform the above tasks:
addItem(alist)
The function addItem accepts one parameter, which is a list. This function prompts the user for an item to be added to the list. If the item is not already on the list, the item is added to the end of the list. Otherwise, a message is given indicating that the item is already on the list.
removeItem(alist)
The function addItem accepts one parameter, which is a list. This function prompts the user for an item to be removed from the list. If the item on the list, it is removed from the list. Otherwise, a message is given indicating that the item was not on the list.
printOut(alist)
The function printOut accepts one parameter, which is a list. This function prints out a header: GROCERY LIST followed by a list of all of the items in the list, one at a time.
The main part of your program will start by creating an empty list. The user will then be allowed to choose any of the following UNTIL he/she wishes to exit.
DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma
Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t
Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th
1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of