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 trialIsrael Mabhoo
16,356 Pointsguys where am i getting wrong
favorite_things = ['raindrops on roses', 'whiskers on kittens', 'bright copper kettles', 'warm woolen mittens', 'bright paper packages tied up with string', 'cream colored ponies', 'crisp apple strudels']
item1 = favorite_things.pop(1) item2 = favorite_things.pop(1) item3 = favorite_things.pop(1)
slice1 = [] slice1.append(item1) slice1.append(item2) slice1.append(item3)
slice2 = favorite_things[2:]
sorted_things = favorite_things[:]
sorted_things.sort()
favorite_things = ['raindrops on roses', 'whiskers on kittens', 'bright copper kettles',
'warm woolen mittens', 'bright paper packages tied up with string',
'cream colored ponies', 'crisp apple strudels']
item1 = favorite_things.pop(1)
item2 = favorite_things.pop(1)
item3 = favorite_things.pop(1)
slice1 = []
slice1.append(item1)
slice1.append(item2)
slice1.append(item3)
slice2 = favorite_things[2:]
sorted_things = favorite_things[:]
sorted_things.sort()
3 Answers
Tim Rach
Full Stack JavaScript Techdegree Student 25,127 PointsYou used .pop() to get items of. ItΒ΄s all about slices.
The first challenge: "that has the second, third, and fourth items"
slice1 = favorite_things[1:4]
Second challenge: "Get the last two items from favorite_things and put them into slice2."
slice2 = favorite_things[-2:]
Third challenge: "Make a copy of favorite_things and name it sorted_things. Then use .sort() to sort sorted_things."
sorted_things = favorite_things[:]
sorted_things.sort()
Owen Orsetti
19,102 PointsSorry to necro a thread, but I've just finished this task and I wanted to ask a question about the 3rd part.
I tried to combine the last 2 steps into 1 by trying
sorted_things = favorite_things[:].sort()
but my variable stayed empty. Is there a way to do the slice and the sort in the same line?
Cheers, Owen
Tim Rach
Full Stack JavaScript Techdegree Student 25,127 PointsLike this one?
sorted_things = sorted(favorite_things[:])
Owen Orsetti
19,102 PointsNice! That works great! Thanks!
Tim Rach
Full Stack JavaScript Techdegree Student 25,127 PointsNo Problem :) Set this question as solved then please.