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 trialJaxon Gonzales
3,562 PointsPython Basics - Joining and Splitting question
Hi, I'm working on this python challenge and I feel like there are no errors in my code but every time I try to submit it tells me that 'It looks like task 1 is no longer passing'. This doesn't make any sense because the only requirement for task one was to make a variable called 'sundaes' which split the 'available' variable by the semicolons.
Any help is appreciated!
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(";")
menu = "Our available flavors are: {}. "
display_menu = sundaes.join(", ")
menu = menu.format(display_menu)
2 Answers
Kent ร svang
18,823 PointsWell, it could be that you are using the join-method wrong. The correct way to use it would be something like this :
display_menu = ", ".join(sundaes)
Jaxon Gonzales
3,562 PointsThat was it. Thanks!