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 trialJohn Smith
2,184 PointsI don't know what to do for the slice syntax challenge
It says to copy the contents from messy_list to a new variable using slice syntax. I have no idea what they mean they simply typing clean_list = messy_list isn't doing it. Any help?
messy_list = [5, 2, 1, 3, 4, 7, 8, 0, 9, -1]
1 Answer
Luke Glazebrook
13,564 PointsYou will need to use the .slice method in Python which takes array index's and 'slices' out the specified area! Take a look at this method online and see if you can get it to work!
Good luck!