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.

Torger Angeltveit
11,228 PointsCant spot the issue, python beginner workspace
I get error on line 5.
name = input("whats your name? ")
if name == "Torger":
print(name + " is a lumberjack and he is OK! ")
else:
print(name + " sleeps all night and " + name + " works all day")
The console: python lumberjack.py
2 Answers

Gordon Reeder
2,521 PointsYour else statement is indented too far. It needs to be aligned with the IF statement. Also, be sure to reduce the indent of the following PRINT statement as well.
John McErlain
12,508 PointsIt appears that you may have an indent error where "else" does not align with "if"; though that would show up as an error on line 4.

Vittorio Somaschini
33,371 PointsHi John.
Just for your info: I have changed your comment into an answer.
Good spot!