I want to extract from this nested list:
[['c', 'd', 'e', 'f', 'g'],
['a', 'b', 'c', 'd', 'e'],
['n', 'o', 'p', 'q', 'r'],
['t', 'u', 'v', 'w', 'x']]
the items by the indices for each row:
[2, 1, 4, 0]
The expected output will be:
['e', 'b', 'r', 't']
How can I do it?