Question: Submit a single file named hw 8 . py that contains the solutions to the two problems below. When you are finished, test your solutions

Submit a single file named
hw8.py that contains the solutions to the two problems below. When you are finished, test
your solutions using doctest, Include the following code at the bottom of your module in
order.to run the dectegt:
if
name
==1
main
1 :
import doctest
print( doctest.testfile('
hw9TEST.py'))
Inheritance (based on 8.38) You MUST use inheritance for this problem. A stack is a sequence container type that,
like a queue, supports very restrictive access methods: all insertions and removals are from one end of the stack,
typically referred to as the top of the stack. A stack is often referred to as a last-in first-out (LIFO) container because
the last item inserted is the first removed. Implement a Stack class using inheritance. Note that this means you
may be able to inherit some of the methods below. Which ones? (Try not writing those and see if it works!)
a. Constructor/- Can construct either an empty stack, or initialized with a list of items, the first item
is at the bottom, the last is at the top.
b. puah ()- take an item as input and push it on the top of the stack
c. pop()- remove and return the item at the top of the stack
d. isEmpty (1)- returns True if the stack is empty, False otherwise
e.[]- return the item at a given location, [0] is at the bottom of the stack
f. len()- return length of the stack
The object is to make this client code work:
 Submit a single file named hw8.py that contains the solutions to

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!