I have tried to access to object variables dynamically. The question is how to access with variables to object properties. For example:
    >>> my_obj = x_class()
    >>> property = "name"
    >>> my_obj.property = "Rick"
    >>> my_obj.name
    "Rick"
I have found some answers but in JS not in python Thanks in advance