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 trialKalyani Balasubramanian
620 PointsPlease read through my code and tell me what I'm missing. So frustrated. Videos move too quickly for me.
Please read through my code and tell me what I'm missing.
full_name="Kalyani Balasubramanian"
name_list=full_name.split()
greeting_list="Hi, I'm Treehouse".split()
greeting_list[2]=name_list[0]
greeting=join(greeting_list)
2 Answers
Hanley Chan
27,771 PointsHi,
For join you need to specify a string to use to join the the list together into a string.
greeting= " ".join(greeting_list)
This would place a space character between each element in greeting_list in the new list.
Kalyani Balasubramanian
620 PointsThank you