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 trialmonica shim
2,197 PointsPython Basics - Splitting and Joining
available = "banana split;hot fudge;cherry;malted;black and white"
use .split() to break the "available" string apart on the semicolons. Assign this to a new variable "sundaes"
what would the code look like?
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = "available"
sundaes.split(';')
list('sundaes')
1 Answer
Steven Parker
231,248 PointsSPOILER ALERT
You're taking the question a bit too literally. When they said to break the "available" string apart, they were talking about the long string they had already assigned to the variable named available. If you split that apart, assigning the result to a new variable named sundaes, you'd have something like this:
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')