Ich werde Python verwenden und schreiben, wovon ich süchtig bin.
x=['a','b','c']
y=x
Wo y ist ['a', 'b', 'c'].
Aber
Geben Sie x [0] = "xxx" ein und ändern Sie x in ['xxx', 'b', 'c']. Dann y ist auch ['xxx', 'b', 'c']. Der 'a'-Teil wird' xxx '.
Achtung.
Recommended Posts