标签: python
y=len(list2)-1 z=0 finalList[2]='X' while z < len(list2): print(z,y) finalList[z]=list2[y] y-=1 z+=1 return finalList
如何使用while?
{{1}}