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 trialRewien Algoo
508 PointsI give up, what is the solution?
Write a function called hello_student. This function should receive one argument, name. This function should return one value, the string 'Hello ' followed by the value of the name parameter. What is the solution?
def hello_student(name):
return(name)
print(hello_student)
1 Answer
Marco Fregoso
405 PointsYou're on the right track you just need to concatenate the string 'Hello ' followed by the name parameter as asked for in the challenge. Yes it's very strict instructions lol, but since the site is checking for an exact value you must enter exactly what they ask for.
Then on the second part of the challenge you must call the function and save its value in a variable called hello.
def hello_student(name):
return("Hello " + name);
hello = hello_student("Your name here");