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 trialSiyuan Welch
3,025 PointsCombine the sundaes list into a new string, joining them with a comma and a space
I have no idea how to fix it.
3 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsYou can join a list using:
', '.join(some_list)
This will return a string which may be assign to a variable, printed, or returned from a function as needed.
Siyuan Welch
3,025 PointsYeah, it's went through. Thank you so much!
Joseph Shammas
890 PointsIt you want to complete in one line try this
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(";")
menu = "Our available flavors are: {}."
menu = menu.format(', '.join(sundaes))
Siyuan Welch
3,025 PointsSiyuan Welch
3,025 PointsTASK: Alright, let's finish making our menu. Combine the sundaes list into a new string, joining them with a comma and a space (", "). Use that string with a .format() on our existing menu variable and replace the current value of menu.
Preview Code: available = "banana split;hot fudge;cherry;malted;black and white" sundaes = available.split(";") menu = "Our available flavors are: {}."
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsTry this: