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 trial

Python Technical Interview Prep: Python Basics Basic Python Once You Pop

Noor Hafiza Binti Ibrahim
Noor Hafiza Binti Ibrahim
11,712 Points

Bummer: Uh oh, I didn't get the correct value returned. It should have been [5, 6, 7, 9]. Instead, it was 8

pop.py
# 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
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey 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. :point_right: 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!!