I'm trying to set a variable based on dynamic input from a dictionary. However, I'm not trying to set an attribute based on string input, I'm trying to set a variable. So, instead of:
this.attribute = True
I'm trying to dynamically set:
this = True
I can't create any conditional statements to predetermine what this
might be, and it comes entirely from a string in a dictionary. Is there a way I can do this?