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 Errors

how to fix errors

please tell anyone

Jennifer Nordell
seal-mask
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi! I received your request for assistance, but I'm unsure what exactly you need assistance with. Could please describe your problem in more detail or possibly link us to a challenge or workspace?

the error that is on the print(hello test)

Steven Parker
Steven Parker
229,644 Points

We will need to see your code to be able to help. Please post it here.

Use the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area. :arrow_heading_down:
Or watch this video on code formatting.

1 Answer

Steven Parker
Steven Parker
229,644 Points

I'm going to assume the entire code might be just "print(hello test)", and in that case the issue is that you forgot to enclose your string in quotes. A corrected version would look like this:

print("hello test")

If there's more to the issue, please post the whole code.