I need these two getters to return the string converted version of the x input or y input. Please take a look at my code, and let me know where I faulter. Thanks!
class V:
def __init__(self, conv, convy):
conv = conv
convy = convy
self.conv = str(conv)
self.convy = str(convy)
def getX(self):
return self.__conv
def getY(self):
return self.__convy