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

functions-with-ar

I really need help, I am stumped on this problem.

creating_functions.py
def hello_student(name):

name = ashly
    return name 

print("Hello", name)

2 Answers

Steven Parker
Steven Parker
229,644 Points

Here's a few hints:

  • all the work for task 1 should be done inside the function
  • code inside a function must be indented more than the "def" line
  • the "name" argument should be used as-is and not reassigned with anything
  • the "Hello " should be combined with the name as part of the return value.
  • you won't need to "print" anything

What do you mean when you say "The (Hello )should be combined with the name as part of the return value."?

Steven Parker
Steven Parker
229,644 Points

The challenge is expecting the return value to be one longer string made up by joining "Hello " with the name argument. This might be a good place to use concatenation.

You shouldn't reassign "name" argument; return "Hello " + name; Does this clear things?