summaryrefslogtreecommitdiff
path: root/doc/data/messages/m/multiple-constructor-doc/good.py
blob: d96d5ce0d7c43e0614094732911130b032168304 (plain)
1
2
3
4
5
6
7
8
9
class Point:
    def __init__(self, x, y):
        """Represents a point in the xy-coordinate plane.

        :param x: x coordinate
        :param y: y coordinate
        """
        self.x = x
        self.y = y