First, we need a base class. We'll call this Automobile. It will have a method called go, which takes self as a parameter.
Automobile
go
self
Make sure to type def go(self).
def go(self)