File: class/Workbook/Examples/Lecture15/substack.py

from oopstack import Stack           # get wrapper class

class Substack(Stack):
    def __init__(self, start=[]):    # extend it in Python
        Stack.__init__(self)
        # [. . .]            



[Home page] Books Code Blog Python Author Train Find ©M.Lutz