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

Digital Literacy Computer Basics Computer Languages Programming Paradigms - Part 1

I can't seem to complete the Challenge Task 1 of writing in Python

With many attempts, I'm not correctly answering the Challenge Task 1

HelloWorld.py
print(" ")"Hello YOUR NAME"
print("Hello YOUR NAME")
print(" ") ("Hello YOUR NAME")

3 Answers

Hello Paul,

the challenge is asking you to complete the string WITHIN the print(" ") task. Thus, you should place "Hello Paul" inside of the brackets/quotations provided in the challenge.

print("Hello Paul")

Thank you,

I finally got it,

Also, if you are trying to complete the code challenge using the three lines of code you provided, that may be why it's flagging an error. The second line of code you provided, | print("Hello YOUR NAME") |, should be enough to complete the challenge; however, the interpreter will try to run all three lines provided, which will cause an error due to the incorrect syntax in the first and third line.