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 (2016, retired 2019) Lists Combining Lists

Task 1 is no longer passing

I didn't change anything in my answer at Task 1. Why am I getting this error: "Task 1 is no longer passing"? I'm just trying to append 2 more items on the list, as specified in the instructions. What am I doing wrong here? Thanks for any insights you can provide.

lists.py
best = [ 6, "cat", 4.8 ]
best.append( 34, "micro" )

2 Answers

Alexander Køpke
Alexander Køpke
5,065 Points

Append only takes one item. So you'd have to use append twice to add two items.

best.append(34)
best.append("micro")
#it is possible to add two at a time using extend with a list of two items.
best.extend([34, "micro])

It worked ! Thank you Alexander, for your help.