how can i sort a zip list with list index from another list? At the moment i use two loops and its not very efficient.
L1 = ['eins','zwei','drei','vier']
L2 = ['zwei','eins','vier','drei']
L3 = ['apfel','birne','banane','kirsche']
zipped = zip(L2,L3)
L4 = []
for i in L1:
for e,g in zipped:
if e == i:
L4.append(g)
print L4