How to passed by reference or value, and the following code produces the unchanged value 'Original'
class PassByReference:
    def __init__(self):
        self.variable = 'Original'
        self.change(self.variable)
        print(self.variable)
    def change(self, var):
        var = 'Changed'
Is there something I can do to pass the variable by actual reference?