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 dev40573
Recipients dev40573
Date 2019-10-12.23:54:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1570924451.06.0.602805161238.issue38458@roundup.psfhosted.org>
In-reply-to
Content
l=[2,3,4]
p=l
p[0]=5
when I change p[0] to 5,l[0] is also changed to 5. I use slicing to get around this ,but when dealing with lists like s[][],slicing does not work
History
Date User Action Args
2019-10-12 23:54:11dev40573setrecipients: + dev40573
2019-10-12 23:54:11dev40573setmessageid: <1570924451.06.0.602805161238.issue38458@roundup.psfhosted.org>
2019-10-12 23:54:11dev40573linkissue38458 messages
2019-10-12 23:54:10dev40573create