class A():
"""Defines a class A with x and y attribute"""
def __init__(self, x, y):
"""Every instance of A has x and y attributes"""
self.__x = x #private instance attribute x
self.__y = y #private instance attribute y
def GetX(self):
"""Retrieves the x attribute"""
return self.__x
def GetY(self):
"""Retrieves the y attribute"""
return self.__y
def SetX(self, x):
"""sets the x attribute"""
self.__x = x
def SetY(self, y):
"""sets the y attribute"""
self.__y = y
class Celsius:
def __init__(self, temperature = 0):
self.temperature = temperature
def to_fahrenheit(self):
return (self.temperature * 1.8) + 32