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 trialArjan Guglani
3,598 PointsHelp me
Help
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu = "Our available flavors are; {}."
display_menu = menu.format(sundaes).join("sundaes, menu")
1 Answer
Krishna Pratap Chouhan
15,203 Pointscheck the comments for explanation:
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
#colon not semi-colon in below string.
menu = "Our available flavors are: {}."
#first form a string and then fill that string into the menu-string.
#The string to be formed is: banana split, hot fudge, cherry, ..... and so on.
#we have list of above items.
#join the list-items using the string ", "
#display_menu = ", ".join(sundaes);
#update the display_menu
#menu = menu.format(display_menu)
#to become brave:
menu = "Our available flavors are: {}.".format(", ".join(sundaes));