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 trialArturs Certuks
13,059 PointsStuck with this challenge
Challenge:
Function called 'hello_student'. Function should receive one argument, 'name'. It should return one value, the string 'Hello ' followed by the value of the name parameter.
None of these were accepted as the correct answer:
Example Nr.1
def hello_student(name): result = "Hello " + name print(result)
Example Nr.2
def hello_student(name): result = "Hello " + name print(result)
hello_student("Mark")
Example Nr.3
def hello_student(name): result = "Hello " + name print(result)
name = input("What's your name? ") hello_student(name)
I ran all these codes and they seem to work, but I'm puzzled now what exactly is asked from me in this challenge?
def hello_student(name):
result = "Hello " + name
print (result)
1 Answer
Christian Beckett
11,123 PointsHi. Have you tried using Return instead of print?? Arturs Certuks, don't worry if you haven't simple mistakes is a coders life afterall.
Christian Beckett
11,123 PointsChristian Beckett
11,123 Pointsyour code should look like this
Arturs Certuks
13,059 PointsArturs Certuks
13,059 PointsThanks Christian, this worked 😁👌