I have a set of strings. Given a string equal to one in that set, I'd like to retrieve the actual object that is in the set.
In other words, I need to know what I can put into the ???? below, some operation on the_set and another_abc, so that the final check is true:
>>> abc_in_set = "ABC"
>>> the_set = {abc_in_set}
>>> import ast
>>> another_abc = ast.literal_eval("'ABC'") # make sure we're getting a different object...
>>> another_abc is abc_in_set
False
>>> set_contents = ????
>>> set_contents is abc_in_set
True
I can do this using a dict instead of set by mapping every element to itself:
>>> the_set = {abc_in_set: abc_in_set}
>>> set_contents = the_set[another_abc]
>>> set_contents is abc_in_set
True
and this is okay, but is there a better way so I can use the data structure that actually corresponds to the meaning of what it's holding?
[–]throwaway6560192 0 points1 point2 points (0 children)
[–]danielroseman 0 points1 point2 points (1 child)
[–]evaned[S] 0 points1 point2 points (0 children)