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 Python Collections (Retired) Lists Redux List creation/extension methods

Yul McGrath
Yul McGrath
2,033 Points

What is the answer to this question.

I thought the answer would be. my_list.insert(-1,1)

But the text box only allows for the method. I thought the answer could also be extend(1) but I got incorrect answer on this as well.

Yul McGrath
Yul McGrath
2,033 Points

The question was to fill in the blank so that 1 would be added to the end of the list.

my_list._______(1)

My answers inlcuded my_list.extend(1) my_list.insert(-1,1) <would never come out like this because of the format of the question.

1 Answer

Yul McGrath
Yul McGrath
2,033 Points

I forgot the use of the append() method...

my_list.append(1)