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 trialKeegan Swanson
1,339 Pointsfunctions-with-ar
I really need help, I am stumped on this problem.
def hello_student(name):
name = ashly
return name
print("Hello", name)
2 Answers
Steven Parker
231,248 PointsHere'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
Andrii Gorokh
14,809 PointsYou shouldn't reassign "name" argument; return "Hello " + name; Does this clear things?
Keegan Swanson
1,339 PointsKeegan Swanson
1,339 PointsWhat do you mean when you say "The (Hello )should be combined with the name as part of the return value."?
Steven Parker
231,248 PointsSteven Parker
231,248 PointsThe 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.