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

why I cant write print("Hello, Threehouse.")?

in the question I was asked why I cat write print function like - print("Hello, Threehouse.")

function.py
print("Hello, Threehouse.")

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hi Adi,

Your syntax is correct :thumbsup:, but your string is not. Challenges have very specific instructions and everything needs to be exactly as the instructions ask for. Here, there are two small errors:

First, a spelling error => you have "Threehouse" instead of "Treehouse"
Second, you have an ending period that was not asked for.

print("Hello, Treehouse")

Other than that... good job!
Keep coding! :) :dizzy: