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 trialSepehr Moghani
2,286 Pointsthe menu string incorrect?
I don't know why the menu string is incorrect. It would be a lot easier if you could add an easier way to find out why our answer is wrong.
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu = "Our available flavours are: {}.".format(", ".join(sundaes))
2 Answers
Enzie Riddle
Front End Web Development Techdegree Graduate 19,278 Points- Check to make sure your menu sentence is correct.
- You do not need to join the sundae items.
If you're still stuck, comment back. Happy coding! :)
Jennifer Nordell
Treehouse TeacherHi there! You're doing fine and yes, you do need to join the sundaes
menu with a comma and a space just as you're doing. But Enzie Riddle is correct in that your menu string still isn't quite correct.
You are using the British spelling of "flavours" instead of the American spelling of "flavors".
Hope this helps!
Sepehr Moghani
2,286 PointsBecause I'm in Australia. Haha. I actually fixed it. I'm learning about true and false now...
Enzie Riddle
Front End Web Development Techdegree Graduate 19,278 PointsOh I didn’t realize that! When I ran the code through that step in the challenge it didn’t like it when I joined the list