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

Doruk Basibuyuk
Doruk Basibuyuk
272 Points

i wrote a code like this but it didn't accept print("hello,treehouse")

I wrote a code like this but it didn't accept print("hello,treehouse")

function.py
print ("hello,treehouse")

You're close!

print("hello,treehouse")

No space between print

1 Answer

Steven Parker
Steven Parker
229,783 Points

:point_right: The challenges can be very picky.

In this case, it's expecting you to print "Hello, Treehouse" with a capital "H" and a space after the comma.

And while it's not a syntax issue, the challenge doesn't like to see a space between print and the parenthesis.