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

Python Introducing Lists Using Lists Mutability

Harris Handoko
Harris Handoko
3,932 Points

Just for display purposes, why even need to copy the wishlist when you can just reference any item using index?

Do they not produce the same result anyway?

1 Answer

In the video, the instructor is doing something very specific in order to teach an example of how pop() works. It is not the only way to solve the problem. In this context, he is trying to emphasize that pop() literally removes a value from the list which then would impact the index of the list itself and the contents of the list itself. He presented the option of copying a list to manipulate since it will leave the original list object unchanged.