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

I rewrote the code 3 times on workspace and all there have returned "Hello Ashley" but here it tells me its wrong.

.

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

print(hello_student("Ashley"))

1 Answer

Mark Sebeck
MOD
Mark Sebeck
Treehouse Moderator 37,353 Points

Hi Angel. You need a space after hello inside the quotes. Also you do not need the print statement. Yes that’s always good for troubleshooting. But the challenge did not ask for it and that will sometimes confuse the challenge checking logic. The second part of the question will ask you to call the function and store the result to a variable.

Good luck Angel! Keep at it.