Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Trenton Spears
Python Development Techdegree Graduate 16,969 PointsOnce You Pop
I'm sorry, but I'm not sure where to go from here..
def pop(lst, ind):
try:
lst.pop(ind)
except IndexError:
return "Invalid Index"
else:
return lst.pop(ind)
1 Answer

Chris Freeman
Treehouse Moderator 67,978 PointsHey Trenton Spears, you are so close!
return lst
. Running pop()
results in the item popped, so running pop again returns the second popped item.
Post back if you need more help. Good luck!!!
Trenton Spears
Python Development Techdegree Graduate 16,969 PointsTrenton Spears
Python Development Techdegree Graduate 16,969 PointsHmm...might you have another way to explain?
Trenton Spears
Python Development Techdegree Graduate 16,969 PointsTrenton Spears
Python Development Techdegree Graduate 16,969 PointsAhh I see. You wanted me to remove
.pop(ind)
from thereturn lst.pop(ind)
return statement. Thanks Chris, you're Batman!