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()

Derek Woods
Derek Woods
6,272 Points

task 3 on banana.py in python basics, task 1 is complete but will not run unchanged in task 3.

as far as i can tell i am not affecting the code in task one which was use split to create the sundae list, so is this a bug or should i code this differently

banana.py
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu = 'Our available flavors are: {}.'.format(sundaes.join(', '))

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! You're doing terrific, but you've stumbled onto the most common reason for "Task 1 is no longer passing". You have introduced a syntax error which means that the code can no longer be compiled nor interpreted. But you're so close here, that I think maybe some hints might do the trick!

  • First we say what we want as the separator between the items
  • Then we use the join method
  • We send in what we're separating as the argument to the join method

Example: If I wanted to separate all elements in myList with "--" I might do something like:

('--').join(myList)

Hope this helps! :sparkles: