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

Function 'print("Hello,Treehouse")' that above is what i typed in but it doesn't work help plez

'print("Hello,Treehouse")' that above is what i typed in but it doesn't work help plez

function.py
'print("Hello,Treehouse")'.

2 Answers

Steven Parker
Steven Parker
229,644 Points

Don't forget the space.

There should be one between the comma and the word Treehouse.

Also, while the string passed as an argument to the print statement must be in quotes, the print statement itself should not be.