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

ive tried to print out "hello Treehouse" using Print("Hello,Treehouse") but its doesnt work

it keep on telling me to check the spelling of Print yet it is correctly spellet so what could be the problem. Print("Hello,Treehouse")

function.py
my_function_name():
Print("Hello,Treehouse")

1 Answer

Jakob Hansen
Jakob Hansen
13,746 Points

Python is case sensitive, meaning that upper case and lower case letters are not the same.

print and Print is not the same thing. the print function you are trying to call on line 2, should be with a lower case p. I'm not sure what that function is doing there, but let me know if you need help :)