#Sometimes we want to initiate more information than our parent Class can handle. To elaborate on #this, lets say we want to pass in 1 more attribute (apart from the first, last, and pay attributes) ...
# Declare a HardwareStore subclass that inherits from the Store superclass. # Do not define any attributes and methods on the subclass. # Use the pass keyword to avoid a class body in HardwareStore. # ...