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.

Ira Salem
10,331 PointsSyntaxError: invalid syntax
Here is the code in my python document titled "lumberjack.py".
name = input("What is your name? ")
if name == "Ira";
print(name + " is a lumberjack and he is OK!!")
else;
print(name + " sleeps all night and " + name + " works all day!")
In the console I'll type in "python lumberjack.py" and instead of getting what the instructor is getting I keep getting a "SyntaxError: invalid syntax" message.
I would copy and paste it but I don't know how.
1 Answer
William Li
Courses Plus Student 26,865 Pointsif name == "Ira";
, use colon, not semicolon. and else;
too.
Ira Salem
10,331 PointsIra Salem
10,331 PointsYou sir are Awesome! Thank you for this. This made my head hurt so much. I didn't catch that minor detail.
William Li
Courses Plus Student 26,865 PointsWilliam Li
Courses Plus Student 26,865 Pointsthat's why sometimes having another pair of eyes to take a look at your code can help so much. hah