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

Edward Randall
Edward Randall
1,834 Points

When I check work I am told 'st' is not defined. I thought I did define it as st = greet + name?

title

creating_functions.py
def hello_student(name):
    name = ('Ed')
    greet = ('Hello ')
    st = greet + name
    return st

hello_student(st)

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey Edward Randall, you are on the right path.

  • do not redefine name inside the function. This overrides the argument passed in. :point_right: comment out or delete the assignment to name
  • The rest of the function is correct.
  • the variable st is not defined outside of the function. To call the function, use a string literal, such as, "Ed"
  • remember to assign the results of the call to the variable hello

Also, You could use 'Hello ' directly in the assignment to st. It is not necessary to assign it to the variable greet As a further optimization, you could return the construction of the string directly in the return line. Assignment to a variable such as st is not strictly required.

Post back if you need more help. Good luck!