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 trialAntonio Rodrigues
1,218 PointsI can't seem to pass this
Can you please add "Paul" to the end of the beatles list using the appropriate list method?
I don't understand what I am doing wrong here. I looked back at the video and it seems like this would be the way to do it.
beatles = ["John"]
others = ["George", "Ringo"]
beatles.append("Pual")
2 Answers
Jennifer Nordell
Treehouse TeacherHi there, Antonio Rodriguez ! I received your request for assistance and you're doing terrific! The reason this isn't passing is because you're supposed to be adding "Paul" to the list, but instead, you're adding "Pual". Note the inversion of "u" and "a" in your variant. When I switch the places of the "u" and "a" to create "Paul", your code passes the first step.
Well done! Hope this helps!
rtyjj tyrell
Front End Web Development Techdegree Student 324 PointsHey! would you like to learn python with me im a beginner to
Antonio Rodrigues
1,218 Pointssure im down is there a way i can add you?
Antonio Rodrigues
1,218 PointsAntonio Rodrigues
1,218 Pointsthank you!