Tutorial
Code introspection is the ability to examine classes, functions and keywords to know what they are, what they do and what they know.
Python provides several functions and utilities for code introspection.
help()
dir()
hasattr()
id()
type()
repr()
callable()
issubclass()
isinstance()
__doc__
__name__
Often the most important one is the help function, since you can use it to find what other functions do.
Exercise
Print a list of all attributes of the given Vehicle object.