What will it look like?

Report a typo

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?

Select one option from the list
___

Create a free account to access the full topic