Create a Vehicle parent class that has the methods drive and stop, and the properties weight and horsepower. Then create three child classes: Car, Motorcycle, and Truck. Car will have the property wheels, equal to 4. Motorcycle will have the wheels property set to 2, and the method wheelie. Truck will have the property wheels set to 6, and will have the method dump. These methods can just print what they are doing. For example: print('I am now stopping…') Use Python and super().