i am looking for an efficient way to unpack a dictionary's keys and values into variables and values for an arbitrary size and keys. for example:
test = {'key1':'val1','key2':100,'anotherkey':'val3'}
how could i extract variables named key1, key2, and anotherkey with the respective values above in a way that is not sensitive to the number or name of the keys?
i have tried solutions involving map() and .get() but they seem to work when looking for specific keys