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.
これを 1 行に減らすことはできますaか (割り当て後)。
a
a = [1,2,3] b = a[:] b.append(4)
以下はおそらく最も単純です。
b = a + [4]
a[:]ここでは、参照をコピーしなくなったので必要ありません(+いずれにせよ、新しいリストを作成して返します)。
a[:]
+