Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Rudolph Wilson
156 Pointsthe print function. asks to print () "Hello, Treehouse". my answer is print ("Hello, Treehouse".)
question asks to print the word "Hello, Treehouse".
I did:
print ('Hello, Treehouse".)
why is this not correct?
1 Answer

py lund
1,477 PointsHi Rudolph,
There's a typo in the argument you are passing to the function print. You are opening the string with single quotes and closing it with double quotes. You can't combine both.
It should be either
print('Hello, Treehouse')
or
print("Hello, Treehouse")
Plus, you are adding a period outside the quotes, which is a syntax error.