>>> list1 = ["ab","ba"]
>>> list2 = list1
>>> list2[1] = "d"
>>> list1
['ab', 'd']
List-Objekt
String-Objekte
“ba”
“ab”
list1
list2
“d”