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

Alphonso Sensley II
Alphonso Sensley II
8,514 Points

Is .copy() available in Python 2.7.10 ?

I was following the Mutability video and after I modify the function as the video instructs; I get an error. Does anyone know if the .copy() method used in the video is only available in Python versions later than 2.7.10?

1 Answer

Copy is in the python docs for 2.7

If I am reading that page correctly it looks like copy was added in 2.5 Changed in version 2.5: Added copying functions.