Question: IN PYTHON 7 . 9 LAB: Grocery list editor with undo stack In this lab a grocery list editor with undo functionality is implemented. Step
IN PYTHON LAB: Grocery list editor with undo stack
In this lab a grocery list editor with undo functionality is implemented.
Step : Inspect the UndoCommand abstract base class
The readonly UndoCommand.py file has a declaration for the UndoCommand abstract base class. Access UndoCommand.py by clicking on the orange arrow next to main.py at the top of the coding window. The UndoCommand class represents a command object: an object that stores all needed information to execute an action at a later point in time. For this lab, a command object stores information to undo a grocery list change made by the user.
Step : Inspect the incomplete GroceryList class
The GroceryList class is declared in GroceryList.py Two attributes are declared:
A list of strings for list items
A stack of UndoCommand references for undo commands
A simple list implementation of stack ADT is provided in Stack.py
Note that the addwithundo method is already implemented. The method adds a new item to the list and pushes a new RemoveLastCommand object onto the undo stack.
Step : Implement RemoveLastCommand's execute method
The RemoveLastCommand class inherits from UndoCommand and is declared in RemoveLastCommand.py When a RemoveLastCommand object is executed, the string list's last element is removed. So when the user appends a new item to the grocery list, a RemoveLastCommand is pushed onto the stack of undo commands. Popping and executing the RemoveLastCommand then removes the item most recently added by the user.
RemoveLastCommand's sourcelist attribute and constructor are already declared:
sourcelist is a reference to a GroceryList object's list of strings.
The constructor takes a reference to a list of strings as a parameter, and assigns sourcelist with the reference.
Implement RemoveLastCommand's execute method to remove sourcelist's last element.
Step : Implement GroceryList's executeundo method
Implement GroceryList's executeundo method to do the following:
Pop an UndoCommand off the undo stack
Execute the popped undo command
File main.py has code that reads in a list of commands, one per line, that allow for basic testing of basic operations. So after implementing executeundo run your program with the following input:
add bananas
add grapes
add strawberries
print
undo
print
undo
print
quit
Verify that the corresponding output is:
bananas
grapes
strawberries
bananas
grapes
bananas
The program's output does not affect grading, so additional test cases can be added, if desired.
Submitting code written so far to obtain partial credit is recommended before proceeding to the next step.
Step : Implement the SwapCommand class and GroceryList's swapwithundo method
Implement the SwapCommand class in SwapCommand.py The class itself is declared, but no attributes yet exist. Add necessary attributes and methods so that the command can undo swapping two items in the grocery list.
Implement GroceryList's swapwithundo method. The method swaps list items at the specified indices, then pushes a SwapCommand, to undo that swap, onto the undo stack.
Step : Implement the InsertAtCommand class and GroceryList's removeatwithundo method
Implement the InsertAtCommand class in InsertAtCommand.py Add necessary fields and methods so that the command can undo removing a grocery list item at an arbitrary index.
Implement GroceryList's removeatwithundo method. The method removes the list item at the specified index, then pushes an InsertAtCommand, to undo that removal, onto the undo stack.
Main.py
import sys
from GroceryList import GroceryList
def main:
grocerylist GroceryList
quit False
while not quit:
command input
# Process user input
if command "print":
grocerylist.printlistsysstdout
elif command.findadd :
grocerylist.addwithundocommand:
elif command.findremoveat :
grocerylist.removeatwithundointcommand:
elif command.findswap :
index index parseindicescommand:
if index:
printswap command requires two indices, separated by a space. ex: swap
else:
grocerylist.swapwithundoindex index
elif command "undo":
if grocerylist.getundostacksize:
printCannot execute undo because undo stack is empty"
else:
grocerylist.executeundo
elif command "quit":
quit True
else:
printunknown command:", command
def parseindicesstr:
indices intn for n in strsplit
if lenindices:
return
else:
return indices
if namemain:
main
UndoCommand.py
from abc import AB
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
