Reply To: How class methods work › Forums › Python › How class methods work › Reply To: How class methods work November 29, 2025 at 8:52 pm #5803 yazdecoParticipant Instead of return Point(0, 0), I would do return cls(0, 0). This way if you at some point decide to rename Point to e.g. Point2D, you just have to do it once, after the class keyword. 9Apps