Question: Create a python class called UpCounter. A UpCounter keeps track of a number. the number can be increased by a fixed step size When

Create a python class called UpCounter. A UpCounter keeps track of a number. the number can be increased by a fixed step size When a counter is initialized, it is given a a step size. If no step size is given, the step size is assumed to be 1. The counter always starts at a count value of 0 The counter class has three functions: count() - returns the current counter value update() - increases the counter value by stepsize Derive a python class call DownCounter which is inherited from UpCounter A DownCounter is initialized with same arguments as an UpCounter. The only difference is that when the update() function is called, the counter decrements the counter value by stepsize
Step by Step Solution
There are 3 Steps involved in it
And here is the implementation of the DownCounter class which is inh... View full answer
Get step-by-step solutions from verified subject matter experts
