Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列のリストが保存されていますwk
wk
次のコードを実行します。
n_wk=wk for i in range(10): if some condition: n_wk[i]='new'
値を予約したかったwk。しかし、wkも一緒に変更されていn_wkます。誰かがこれのエラーを指摘できますか?
n_wk
のコピーを作成しますwk:
n_wk = list(wk)
または使用:
n_wk = wk[:]
どちらもインデックスを新しいリストにコピーします。