我想通過我創建的數組的每個元素。但是,我正在做一些調試,事實並非如此。以下是我目前爲止的內容以及打印出的內容。陣列中的打印元素python問題
def prob_thirteen(self):
#create array of numbers 2-30
xcoords = [range(2,31)]
ycoords = []
for i in range(len(xcoords)):
print 'i:', xcoords[i]
輸出:
i: [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30]
爲什麼 '我' 回到我的整個陣列,而不只是第一個元素:2?我不知道爲什麼這會返回我的整個陣列。
啊難怪,非常感謝你! – helloworld