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 trialIra 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,868 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,868 PointsWilliam Li
Courses Plus Student 26,868 Pointsthat's why sometimes having another pair of eyes to take a look at your code can help so much. hah