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 trialMark Nembhard
1,387 PointsNot sure why this return value is not being accepted
I have actually gone over this previously but forgotten what the answer is. I seem to be making a " name not defined error. " Do you have to define a argument first before you send it to a function?
def hello_student(title):
title = "Mark"
return "Hello {}".format(title)
print(hello_student(name))
2 Answers
jhon white
20,006 PointsYou should pass to your function a string name or a declared variable or None like: def hello_student(title): title = "Mark" return "Hello {}".format(title)
name = "Nick" print(hello_student(name)) # Hello Nick print(hello_student("Samer"))# Hello Samer print(hello_student(None))#Hello Mark
Or better yet: make a defualt paramater like: def hello_student(title = "Mark"): return "Hello {}".format(title)
Mark Nembhard
1,387 PointsThanks. I managed to get the right answer using your logic
jhon white
20,006 PointsYou are welcome. Good luck :)