适用于提取列表特定顺序元素
lista = [1,3,5] listb = [11,22,33,44,55,66,77] for i in lista: print(listb[i])
结果:
224466