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.

Dan Oswalt
23,438 PointsSundae_list looks good in the error output, what am I missing?
I am getting an error saying that it didn't find the right number of flavors or commas. The string looks good in the error output, what am I missing? Thanks!
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu = 'Our available flavors are: {}.'
sundae_list = ", ".join(sundaes)
menu.format(sundae_list)
2 Answers

Chris Freeman
Treehouse Moderator 67,989 PointsIt's all good except the last line. It modifies the value in menu but does nothing with it. It needs to assign the results back to menu
:
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu = 'Our available flavors are: {}.'
sundae_list = ", ".join(sundaes)
menu = menu.format(sundae_list)

Dan Oswalt
23,438 PointsAh thanks