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 trialNoor Hafiza Binti Ibrahim
11,712 PointsBummer: Uh oh, I didn't get the correct value returned. It should have been [5, 6, 7, 9]. Instead, it was 8
# enter your code below
def pop(list, index):
try:
newlist = list.pop(index)
return newlist
except IndexError as error:
return ('Invalid Index')
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsHey Noor Hafiza Binti Ibrahim, you are very close!
The pop()
method operates on a list in-place and returns the popped item. So newlist
will contain the popped item and list
will be the modified list. change to return list
to pass the challenge.
BTW, using the name of a built-in list
as a variable name overrides its definition locally. So list()
would no longer work with the function. Alternative names could be num_list
, list1
, etc.
Post back if you need more help. Good luck!!
Noor Hafiza Binti Ibrahim
11,712 PointsNoor Hafiza Binti Ibrahim
11,712 PointsThank you 😊