To implement a static method in Python one should use either `+@classmethod+` or `+@staticmethod+`. A class method receives the class as implicit first argument, just like an instance method receives the instance. A static method does not receive an implicit first argument.