Hello,
Is there any way to access a large number of keys in a dictionary efficiently. Perhaps via indexing with an array of lookup values. Some pseudo code may help;
dictionary={a:1, b:2, c:3 ...etc}
lookup=[a, a, b, c, c ... etc]
print dictionary[lookup]
thanks, Joe