In Python there is no switch/case. It is suggested to use dictionaries: What is the Python equivalent for a case/switch statement?
in Python it is good practise to use @property to implement getter/setter: What's the pythonic way to use getters and setters?
So, if I want to build a class with a list of properties to switch so I can get or update values, I can use something like:
class Obj():                                                                                          
"""property demo"""                                                                                  
    @property                                                                                
    def uno(self):                                                                                              
        return self._uno                                                                                       
    @uno.setter                                                                                
    def uno(self, val):                                                                            
        self._uno = val*10                                                                                   
    @property                                                                                          
    def options(self):                                                                                        
        return dict(vars(self))   
But calling
o=Obj()
o.uno=10 # o.uno is now 100
o.options
I obtain  {'_uno': 100} and not {'uno': 100}.
Am I missing something?
 
    