Chciałbym zindeksować listę z inną taką listą
L = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']
Idx = [0, 3, 7]
T = L[ Idx ]
a T powinno być listą zawierającą [„a”, „d”, „h”].
Czy jest lepszy sposób niż
T = []
for i in Idx:
T.append(L[i])
print T
# Gives result ['a', 'd', 'h']