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 Python Basics (2015) Python for Beginners Call a function

I am not able to do it,did try multiple times to print Hello,treehouse

Hoe to print Hello,Tree house

function.py
def my_fun_name():
  print ("Hello,treehouse")

Did you call the function after you created it?

# Create Function
def my_fun_name():
    print ("Hello,treehouse")

# Execute Function
my_fun_name()

You 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

It 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")