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 trial

Python Technical Interview Prep: Python Basics Basic Python Take Me Out To The Ball Game

I'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.

formatting.py
def cheer (city, teamname):
    return ("Let's go, " + city + teamname + ". Let's go!")
cheer ("Kansas City", "Royals")

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

HI Danielle Murray

You'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! :) :dizzy:

Thank you so much Jason Anders that helped a lot.