class Point: def __init__(x, y): self.x = x self.y = y Point(1, 2)
Running this code displays "TypeError: init