I have a large amount of data in variable form:
abc_123 = 5
def_456 = 7
ghi_789 = 9
etc.
I ask the user for various inputs, which builds up a string. For example:
temp = "abc_123"
How do I make it so that temp = abc_123, thus making temp = 5?