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 trialDanielle Murray
Python Development Techdegree Graduate 7,755 PointsI'm struggle to get my code to print out Let's go, Kansas City Royals. Let's go!
Hi Please could you help me
My code puts Kansas CityRoyals as one thing and doesn't seperate them.
def cheer (city, teamname):
return ("Let's go, " + city + teamname + ". Let's go!")
cheer ("Kansas City", "Royals")
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsYou're on the right track, but you also need to concatenate a space between the city and the name. You do that the same way as the variables or the string parts, so just add...
def cheer (city, teamname):
return ("Let's go, " + city + " " + teamname + ". Let's go!")
cheer ("Kansas City", "Royals")
Nice work! :)
Danielle Murray
Python Development Techdegree Graduate 7,755 PointsDanielle Murray
Python Development Techdegree Graduate 7,755 PointsThank you so much Jason Anders that helped a lot.