Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Han Li
Python Web Development Techdegree Graduate 14,817 PointsReplacing or deleting items in list using slices
Hi,
I understand lists are mutable. And slices get a copy of original list. In the following code, list and sliced_list are different.
list = [1, 2, 3, 4, 5] sliced_list = list[::-1]
So, I don't understand about replacing or deleting items in list using slices. Slices are copy of list, replacing or deleting slices can't affect original list, i think.
Could you explain about this?
Thanks, Ross
1 Answer

Steven Parker
240,046 PointsYou're right, modifying "sliced_list" should not affect "list".
If you saw something that caused a doubt, please show the exact steps needed to reproduce it.