class Point:
def _init_(self, x, y): #A Constructor is being made here
self.x = x
self.y = y
def draw(self):
print("Draw")
def move(self):
print("Move")
point = Point(10, 50) # Is their any error in this line.
point.x = 12 # I am trying to update value of x.
print(point.x)