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 trialSean Richardson
495 PointsJoin command
I keep getting an error with my join command on line 4 but the same code works in workspace??
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split((';'))
menu = "Our available flavors are: {}."
display_menu = (", ").join(sundaes)
menu = menu.format(display_menu)
1 Answer
Steven Parker
231,248 PointsThe challenge might be a bit picky about some things.
Try it without putting parentheses around the quoted string.
Sean Richardson
495 PointsSean Richardson
495 PointsIve tried a number of variations and I still cant get it to work? It keeps saying "Bummer! Did you use
.join(", ")
?"Steven Parker
231,248 PointsSteven Parker
231,248 PointsI made it pass just by removing the extra parentheses from this line:
display_menu = ", ".join(sundaes)
There's also unnecessary parentheses on the second line, but the challenge lets those slip by.