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 trialruturaj barik
715 Pointshow its not appending
why .appnd nt wrking
full_name="ruturaj barik"
name_list=full_name.split()
greeting_list="Hi, I'm Treehouse".split()
greeting_list[2].append(name_list)
2 Answers
William Li
Courses Plus Student 26,868 PointsYou should assign using =
, not the append
method.
greeting_list[2] = name_list[0]
ruturaj barik
715 Pointsoops..thank u
ruturaj barik
715 Pointsruturaj barik
715 Pointssir still not working..showing error in frst stp
William Li
Courses Plus Student 26,868 PointsWilliam Li
Courses Plus Student 26,868 Pointsthat's NOT possible.
ruturaj barik
715 Pointsruturaj barik
715 PointsThanks :) it workd... i intrprtd the ques wrngly...sry for troubling