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

I think I'm doing this right. I also tried this in Python CLI and it works fine. It's still giving me "Bummer".

I think I'm doing this right. I also tried this in Python CLI and it works fine. It's still giving me "Bummer". Please check and fix your checking algorithm.

lists.py
best = ["Something", "Something else", "Something more"]
best += ["Anything", "Nothing"]
best.insert(0, "Start")

2 Answers

Umesh Ravji
Umesh Ravji
42,386 Points

It's complaining because of the uppercase 's' in 'start' :p

Thanks a lot. I really didn't notice so obvious and I was so much confused that no one has yet complained and why does it seem only to me that it's broken.

Did you try best.append() ?