So say I have:
a = ['the dog', 'cat', 'the frog went', '3452', 'empty', 'animal']
b = [0, 2, 4]
How can I return:
c = ['the dog', 'the frog went', 'empty'] ?
i.e how can I return the nth element from a, where n is contained in a separate list?