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 trialClifford Gagliardo
Courses Plus Student 15,069 PointsIsn't making a_list=a_list[:] the same as copying the list with a slice?
a_list=[1,2,3]
The question asks me to copy that list with a slice. Why doesn't the following answer pass the question?:
a_list=a_list[:]
2 Answers
Jason Anello
Courses Plus Student 94,610 PointsHi Clifford,
You have the right slice syntax but went a little too far for what the question was asking.
It only wants to know what you would put after a_list
in order to make a copy of it.
So you would only put the slice syntax in the blank.
Clifford Gagliardo
Courses Plus Student 15,069 PointsThank you, Jason!