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 trialAudie Friloux
816 Pointserror in interface
this interface is buggie
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']
slice1=favorite_things[1:4]
slice2=favorite_things[5:]
sorted_things=favorite_things
sorted_things.sort()
1 Answer
Kurt Maurer
16,725 PointsHey Audie,
In your code, you are actually renaming . In order to make a copy using slices, add [:] to the end of favorite_things
to sorted_things
, not making a copyfavorite_things
(like this: favorite_things[:]
) when you define sorted_things. Hope this helps!
EDIT: To correct what I said, after playing around with it a bit, you're assigning a new variable that points to the same location in memory, so you're not actually making a copy. Hopefully that clarifies the difference a little better!
I ran this code to test this:
listy=[1, 2, 3, 4]
listy1 = listy
listies = listy[:]
print(listy1 is listy)
>>> True
print(listy is listies)
>>> False