I'm looking for a way to make a variable set by one method/function in a class accessible by another method/function in that same class without having to do excess (and problematic code) outside.
Here is an example that doesn't work, but may show you what I'm trying to do :
#I just coppied this one to have an init method
class TestClass(object):
    def current(self, test):
        """Just a method to get a value"""
        print(test)
        pass
    def next_one(self):
        """Trying to get a value from the 'current' method"""
        new_val = self.current_player.test
        print(new_val)
        pass
 
     
     
     
    