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 Functions, Packing, and Unpacking Getting Info In and Out of Functions Functions with Arguments and Returns

Devan Laton
Devan Laton
564 Points

I need help understanding this.

I'm not sure what i need to do to fix this but i really want to be able to understand it better. I'll go back and try to figure it out on my own though. Also did hints get removed from these? i haven't been able to use hints for a month or two now.

creating_functions.py
def hello_student(name):
    return ("Hello" (name))

1 Answer

Steven Parker
Steven Parker
230,038 Points

You're on the right track, but:

  • a formatted string template needs the f designation in front of it
  • any interpolation tokens need to be inside the string
  • interpolation tokens need to be surrounded by braces () instead of parentheses
def hello_student(name):
    return f"Hello {name}"