Kizspy Question: 34
(Choose 1 answer)
RUUVERSLAW.COM
What is the output of the following code?
class Point:
def _init_(self, x = 0, y = 0):
self.x = x+1
self.y = y+1
p1 = Point()
print(p1.x, p1.y)
A. Initializes the class for use.
B. 00
C. 11
D. None None
E. Xy