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 trialKaden Currier
1,490 Pointsi am confusion
le confuse
def hello_student(name):
'Ashley' != 'Hello Ashley'
return 'Hello Ashley'
hello_student(name):
return = hello
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsIt looks like the code has gotten a bit scrambled. For Task 1, you have most of the elements:
- Define function correctly:
def hello_student(name):
- Return a value. Here the returned value should use the argument passed in:
return "Hello " + name
orreturn f"Hello {name}"
For Task 2, you need to
- call the function with an argument:
hello_student('Ashley')
- assign the return value to the variable
hello
Post back if you need more help! Good luck!!