常見python面試題-手寫代碼系列

  1.如何反向迭代一個序列html #若是是一個list,最快的方法使用reverse tempList = [1,2,3,4] tempList.reverse() for x in tempList:    print x   #若是不是list,須要手動重排 templist = (1,2,3,4) for i in range(len(templist)-1,-1,-1):    pri
相關文章
相關標籤/搜索