python中遍歷list的三種方式

#方法1spa print '遍歷列表方法1'遍歷 for i in list:方法 print("序號:%s   值:%s" % (   list.index(i)+1  ,  i  ))di #方法2index print '遍歷列表方法2' for i in range(len(list)): print("序號:%s   值:%s" % ( i+1,list[i] ) #方法3 print
相關文章
相關標籤/搜索