This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author merli
Recipients merli
Date 2020-03-31.09:24:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1585646654.92.0.927427440827.issue40123@roundup.psfhosted.org>
In-reply-to
Content
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)
    #print (Liste)
    print ()

print()
for i in range (10):
    print (Liste[i])
History
Date User Action Args
2020-03-31 09:24:14merlisetrecipients: + merli
2020-03-31 09:24:14merlisetmessageid: <1585646654.92.0.927427440827.issue40123@roundup.psfhosted.org>
2020-03-31 09:24:14merlilinkissue40123 messages
2020-03-31 09:24:14merlicreate