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 trialPaul Mc Gonigle
2,606 PointsI dont know how to write a function that returns "hello" and your name
Please help it says there is an assertion error , i am trying to get a function with parameter (name) and return "hello" + name but i dont know what im doing wrong.
def hello_student(name):
val = 'Hello', name
return val
1 Answer
Steven Parker
231,248 PointsYou're close, you need a plus sign instead of a comma (like you wrote in the question but not the code).
Plus, you'll need to be sure there's a space between the words (by putting one at the end of "Hello "
).