pythonのfor文の動きを、たしかめてみた。たぶん、これでいいとおもう。
arr=[1,2,3]
for i in arr:
print(i)
1
2
3
この動きを、たしかめたい。
j=iter([1,2,3])
next(j)
1
next(j)
2
next(j)
3
next(j)
StopIteration: //例外処理が行われ、ここで動作がストップする。
好きなことをやろう。
pythonのfor文の動きを、たしかめてみた。たぶん、これでいいとおもう。
arr=[1,2,3]
for i in arr:
print(i)
1
2
3
この動きを、たしかめたい。
j=iter([1,2,3])
next(j)
1
next(j)
2
next(j)
3
next(j)
StopIteration: //例外処理が行われ、ここで動作がストップする。