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 trialJeremiah Dodson
2,680 PointsSplitting and Joining Challenge Task 3 of 3 not working
The following code works in my python shell (Mac OSX, Python 2.7.8), however it returns an error in Workspaces. I'm wondering what I might be doing wrong.
available = "banana split;hot fudge;cherry;malted;black and white" sundaes = available.split(";") menu = "Our available flavors are: {}." menu.format(", ".join(sundaes))
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(";")
menu = "Our available flavors are: {}."
menu.format(", ".join(sundaes))
2 Answers
Jennifer Nordell
Treehouse TeacherI'm of the opinion that your code would work outside of the challenge. However, the challenge is expecting you to do the menu assignment/formatting/join all on one line. Here's the line they're expecting.
menu = "Our available flavors are: {}.".format(", ".join(sundaes))
Jeremiah Dodson
2,680 PointsThank you for the response Jennifer, that was in fact the correct format.