li1=[12,3,4,5,2,34,5,6,7,3,5,6,66]removelist=[1,2,4,5]x = 0for y in removelist:li1.pop(y-x)x+=1print li1这样有一个要求就是removelist里面的数字必须是从小到大的顺序排列的,