It sounds like you've come across Python object-oriented features.
self - a reference to an object. This is very close to the concept of this in many C-style languages. Check this code:
class Car(object): def __init__(self, make):
Triptych
source share