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

Create a function called pop. It will take 2 parameters, a list and an index. For example: [1,2,

def pop(list1, index): try: return list1.pop() except IndexError: return ('Invalid Index')

pop.py
def pop(list1, index):
    try:
        return list1.pop()
    except IndexError:
        return ('Invalid Index')

1 Answer

Steven Parker
Steven Parker
229,732 Points

This code is not making use of the index. It needs it to remove the correct element.

But also, the instructions say to "remove the element at that index. Then return the list", but this code is returning the removed element instead of the list.

And while it won't cause a problem, the parentheses are not needed around the string on the last line.