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

Mark Nembhard
Mark Nembhard
1,387 Points

Not 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?

creating_functions.py
def hello_student(title):
    title = "Mark"
    return "Hello {}".format(title)

print(hello_student(name))

2 Answers

You 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
Mark Nembhard
1,387 Points

Thanks. I managed to get the right answer using your logic

You are welcome. Good luck :)