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

Rewien Algoo
Rewien Algoo
508 Points

I give up, what is the solution?

Write a function called hello_student. This function should receive one argument, name. This function should return one value, the string 'Hello ' followed by the value of the name parameter. What is the solution?

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

print(hello_student)

1 Answer

Marco Fregoso
Marco Fregoso
405 Points

You're on the right track you just need to concatenate the string 'Hello ' followed by the name parameter as asked for in the challenge. Yes it's very strict instructions lol, but since the site is checking for an exact value you must enter exactly what they ask for.

Then on the second part of the challenge you must call the function and save its value in a variable called hello.

def hello_student(name):
    return("Hello " + name);

hello = hello_student("Your name here");