以下示範Python 的For迴圈,範例是有一個list,我們要把list中的物件一個個印出來 list1=[1,2,3,4,5] for i in xrange(len(list1)): print list1[i]
確定! 回上一頁