Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Self is the instance

Self is already the instance that will be returned

class Point:
    def __init__(self):
       print('in __init__')
       print(self)

pnt = Point()
print(pnt)

# in __init__
# <__main__.Point object at 0x7ff3f45821c0>
# <__main__.Point object at 0x7ff3f45821c0>