Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Feng 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,166 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,166 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.