Suppose I have two variables:
_first = True
_second = _first
print (getValue(_second))
>>> _first
Is there a way to implement getValue(or anything else) in that way ? I don't care about the real value (boole\int\string etc..) , just the name of the assigned variable.
Thanks