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 trialFeng Ji
Courses Plus Student 896 Pointshelp
do not know why this dose not work
Charles Ratkie
11,607 PointsHi! I'm more than happy to help you out. What do you need help with specifically? I see there are 3 separate tasks to this challenge.
Chris Freeman
Treehouse Moderator 68,441 PointsHi Feng Ji, The checkbox to automatically add your code to a post is not working correctly. Please add your code manually. Thanks!
2 Answers
Chris Freeman
Treehouse Moderator 68,441 Points# Task 3 of 3
# Alright, let's finish making our menu.
# Combine the 'sundaes' list into a new string, joining them with a
# comma and a space (", ").
# Put that string into a .format() on our 'menu' string.
menu = "Our available flavors are: {}.".format(", ".join(sundaes))
## or ##
menu = menu.format(", ".join(sundaes))
Feng Ji
Courses Plus Student 896 PointsTHX A LOOOOT!
Feng Ji
Courses Plus Student 896 PointsThe right answer for question 3
jag
18,266 Pointsjag
18,266 PointsShowing your code will be helpful to help you.