Zustand nach der Ausführung folgender Kommandos:
>>> lst1 = ['a','b',['ab','ba']]
>>> lst2 = lst1[:]
oder
>>> lst2 = lst1.copy()
“a”
“b”
“ab”
“ba”
lst1
lst2