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 trialOtto linden
5,857 PointsBummer! SyntaxError: invalid syntax (banana.py, line 3)
Whats wrong? it only says "Bummer! SyntaxError: invalid syntax (banana.py, line 3)" when i check
available = "banana split;hot fudge;cherry;malted;black and white"
"banana slip;hot fudge;cherry;malted;black and white".split(";")
sundaes =
";".join(sundaes)
2 Answers
Niko Klanecek
3,152 PointsAfter the first line you need to save available.split(';')
in sundaes
like sundaes = available.split(';')
To join
the list of sundaes back, you need to do display_menu = ', '.join(sundaes)
Then finally you can do menu = 'Our available flavors are: {}.'.format(display_menu)
Niko Klanecek
3,152 PointsCall split()
on available
, not on the string itself. Also the last 2 lines need to be together on the same line.
Otto linden
5,857 PointsI have it like this now "available = "banana split;hot fudge;cherry;malted;black and white"
available.split(";")
sundaes = ";"join.(sundaes)" and it is still saying Bummer! SyntaxError: invalid syntax (banana.py, line 3)