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 trialAmel Eiland
303 Points.split
I think it's time for a snack. Luckily I have a string full of types of ice cream sundaes. Unluckily, they're all in one string and the string has semi-colons in it too.
Use .split() to break the available string apart on the semi-colons (;). Assign this to a new variable sundaes.
1 Answer
Steven Parker
231,248 PointsI hate giving spoilers to challenges, I believe they rob you of one of the best learning-retention opportunites. But this challenge is worded so explicitly I can't think of any good hints.
I'm going to suggest that you re-watch the video, particularly between time indexes 1:55 and 3:00. I bet you can solve it yourself then.
Amel Eiland
303 PointsAmel Eiland
303 PointsHello Steven, I have tried to apply .split to the string example that they give in this way and apparently it is incorrect:
sundaes = "banana split;hot fudge;cherry;malted;black and white".split(';')
Can you tell me what I am doing wrong?