I have a dictionary where I'd like to select multiple keys by index that are out of order. Something like this works for keys in order -
list(result)[0:2]
But I would like only index 0 and 2 -
list(result)[0,2]
I've tried a number of varieties of this, but what am I missing? Thank you