python3(4)--- python遍歷數組的兩種方法

  python遍歷數組的兩種方法 第一種,最經常使用的,經過for in遍歷數組。其實本質就是取出來的是這個數組或者列表中的元素,和角標無關。html colours = ["red","green","blue"]   for colour in colours:       print colour      # red   # green   # blue   下面的方法能夠先得到數組的長
相關文章
相關標籤/搜索