[issue40123] append() works not correct

2020-03-31 Thread merli
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) #

[issue40123] append() works not correct

2020-03-31 Thread merli
merli added the comment: Output: ['Nr.:', '9', 'Bielefeld', 'Paderborn', 'Lemgo'] ['Nr.:', '9', 'Bielefeld', 'Paderborn', 'Lemgo'] ['Nr.:', '9', 'Bielefeld', &