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 trialshrikant brahmbhatt
45 PointsI am not able to do it,did try multiple times to print Hello,treehouse
Hoe to print Hello,Tree house
def my_fun_name():
print ("Hello,treehouse")
Jeremy Hill
29,567 PointsYou also need to make sure whatever you are told to return or print out matches what they have exactly (including upper/lower case).
1 Answer
Jeremy Hill
29,567 PointsIt looks like you added too much code in there. The challenge asks you to print: "Hello, Treehouse" and that's it. Here is what I did:
print("Hello, Treehouse")
Nathan Crum
15,183 PointsNathan Crum
15,183 PointsDid you call the function after you created it?