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 trialDino Heras
8,381 PointsTask 3
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.
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(";")
menu = "Our available flavors are: {}."
3 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsLet's go step by step:
1. Combine the sundaes list into a new string, joining them with a comma and a space (", ").
To combine sundaes
into a new new string, use the join
method on the separator string ",
" with the sundaes
list as the argument:
", ".join(sundaes)
2. Use that string with a .format() on our existing menu variable and replace the current value of menu.
Using the .format()
method on the menu
string, with the joined string from above as the argument:
menu = "Our available flavors are: {}.".format(", ".join(sundaes))
Dino Heras
8,381 PointsThank you @Chris Freeman
Trainer Workout
22,341 Pointsmenu = menu.format(", ".join(sundaes))