猿问
怎么反向迭代一个序列?
怎么反向迭代一个序列
翻过高山走不出你
浏览 599
回答 2
2回答
江户川乱折腾
list的话,最快的方法使用reversetempList = [1,2,3,4]tempList.reverse()for x in tempList: print x
0
0
0
料青山看我应如是
templist = (1,2,3,4)for i in range(len(templist)-1,-1,-1): print templist[i]
0
0
0
随时随地看视频
慕课网APP
我要回答