変更せずに保持したい別のリストからコピーされたリストに要素を挿入および削除しています。ただし、前者に操作を適用すると、後の結果も変わりました。どうすればそれを回避できますか?
これは何が起こっているかの例です:
a = range(11)
b = []
for i in a:
b.append(i+1)
print b
#Out[10]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
c = b
# Here, what I expect is to safely save "b" and work on its copy.
c.insert(-1,10.5)
print c
#Out[13]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10.5, 11]
c.remove(11)
print c
#Out[15]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10.5]
# So far everything is right: I inserted and removed what I wanted.
# But then, when I check on my "backed-up b", it has been modified:
print b
#Out[16]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10.5]
# On the other hand, "a" remains the same; it seems the propagation does not affect
# "loop-parenthood":
print a
# Out[17]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
操作が親リストに伝播する理由がわかりません。どうすればそれを回避できますか? リストをアレンジとして保存するか、ループを使用してリストのコピーを作成する必要がありますか?