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 trialWaleed Aljarman
Courses Plus Student 947 Pointsthe task is to reassign the menu variable to use the existing variable. What does he mean ?
'''''' python
available = "banana split;hot fudge;cherry;malted;black and white" sundaes = available.split(';') menu ="Our available flavors are: {}." display_menu = (", ").join(sundaes) menu.format(display_menu) ''''''
1 Answer
Katie Wood
19,141 PointsHi there,
When it says that you can do the join on the same line, it means on the same line as menu is defined. This basically means just bypassing the display_menu variable entirely and doing the join right there on the line. It would look something like:
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu ="Our available flavors are: {}.".format(", ".join(sundaes))
Waleed Aljarman
Courses Plus Student 947 PointsWaleed Aljarman
Courses Plus Student 947 PointsThank you.