Home > Q&A > body text
大家讲道理2017-04-18 10:29:53
x 的初始值要設為 0 不是 1, 否則最後一圈的時候 x 值會是 n, this index is out of range
x
n
Use for i in range(n) 時, 我們直接使用 i 做為 loop variable 即可, 不必另外使用一個變數 x
for i in range(n)
i
Questions I answered: Python-QA