You've written the following code:
class Person():
"""Create a Person object"""
def __init__(self, name, job):
""" Initialize the object """
self.name = name
self.job = job
def introduce(self):
""" Introduce a person"""
print('This is', self.name)
When you run pydoc on it, what will you see in the documentation?