when do we use self in Python? In ruby we don't need to include this whereas in Python we have to, so it's clear it specifies an object created in some class, For instance check this,
class myClass
def myFunc(AT)
@At = AT
end
end
But in Python I've to do this:
class myClass:
def myFunc(self, AT):
self.AT = AT
Can someone explain me this?