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

Can you please add

How to add please check what i am doing wrong here i am struck on this. i dont know how to watch previous videos

beatles.py
beatles = ["John"]
others = ["George", "Ringo"]
beatles.append("Paul")
list.append("beatles" + " paul")

3 Answers

You can simply click on the previous videos to watch them, if you wish. You can return to any video, quiz or code challenge anytime.

As for solving the code challenge (I am assuming that you are on the second task), you can use the extend method:

beatles.extend(others)

I hope this helps! :grin:

what's the answer?

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

I give UP!!!!