Python Shell で、次のように入力しました。
aList = ['a', 'b', 'c', 'd']
for i in aList:
print(i)
そして得た
a
b
c
d
しかし、私が試したとき:
aList = ['a', 'b', 'c', 'd']
aList = aList.append('e')
for i in aList:
print(i)
そして得た
Traceback (most recent call last):
File "<pyshell#22>", line 1, in <module>
for i in aList:
TypeError: 'NoneType' object is not iterable
誰が何が起こっているのか知っていますか?どうすれば修正/回避できますか?