Create a mix-in for the Car and Truck classes from the previous exercise that lets you operate the turn signals: signal left, signal right, and signal off. Use the following code to test your code.
car1.signal_left() # Signalling left
truck1.signal_right() # Signalling right
car1.signal_off() # Signal is now off
truck1.signal_off() # Signal is now off
boat1.signal_left()
# AttributeError: 'Boat' object has no attribute
# 'signal_left'