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 Introducing Lists Meet Lists All You Need Is Lists

Hey I can't go thru, there is AttributeError: 'list' object has no attribute , help! beatles = ["John"] others = ["Ge

beatles = ["John"] others = ["George", "Ringo"] beatles.append("Paul") others.exetends(beatles) others = beatles + other

2 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Michal Stawarz! I see that you've worked on this and you're really close. First, the method you're looking for is extend but you've typed others.exetends(beatles). There shouldn't be an "s" there and it contains an extra "e" after the "x".

Where you have:

others.exetends(beatles)

I'm expecting:

beatles.extend(others)

Hope this helps! :sparkles:

No way......

Bless You for this!! Big thanks <3