class Vehicle
      A class that defines a vehicle
 
Vehicle is anything that moves!
 
  
__init__(self, name, wheels, capacity)
Constructor - creates a vehicle object
 
name = what do you want to call the vehicle
wheels = how many wheels does it have
capacity = how many people can it carry
show(self)
Just returns a string that shows the details