[issue40123] append() works not correct
merli added the comment: Output: ['Nr.:', '9', 'Bielefeld', 'Paderborn', 'Lemgo'] ['Nr.:', '9', 'Bielefeld', 'Paderborn', 'Lemgo'] ['Nr.:', '9', 'Bielefeld', &
[issue40123] append() works not correct
New submission from merli : Please try out and look bug in this example: Liste = [] StringL = ["Nr.:", "NR", "Bielefeld", "Paderborn", "Lemgo"] for i in range (10): StringL[1] = str(i) Liste.append(StringL) print (StringL) #