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 trial

Python Python Basics (2015) Python Data Types Use .split() and .join()

Sean Richardson
Sean Richardson
495 Points

Join command

I keep getting an error with my join command on line 4 but the same code works in workspace??

banana.py
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
Steven Parker
229,657 Points

The challenge might be a bit picky about some things.

Try it without putting parentheses around the quoted string.

Sean Richardson
Sean Richardson
495 Points

Ive tried a number of variations and I still cant get it to work? It keeps saying "Bummer! Did you use .join(", ")?"

Steven Parker
Steven Parker
229,657 Points

I 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.