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 trialConrad Landicho
3,312 PointsTask 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.
best = [ 6, "cat", 4.8 ]
best.append( 34, "micro" )
2 Answers
Alexander Køpke
5,065 PointsAppend 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])
Conrad Landicho
3,312 PointsIt worked ! Thank you Alexander, for your help.