(Choose 1 answer)
A. X=By=A
B. X=A y=B
C. X = A
D. Y = B
What is the result of running the following lines of code?
class Points(object):
def_init__(self,x,y):
self.x=x
self.y=y
def print_point(self):
print('x=',self.x, y=',self.y)
p1=Points("A", "B")
p1.print_point()
El 49