When defining a method on a class in Python, it looks something like this:
class MyClass(object): def __init__(self, x, y): self.x = x se
There is also another very simple answer: according to the zen of python, "explicit is better than implicit".