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![](https://ecs-static.teamtreehouse.com/assets/views/marketing/shared/community-banner-white-47072046c51352fe6a69f5e691ff5700b28bb11d45197d7bdf066d9ea3f72d0c.webp)
![Torger Angeltveit](https://uploads.teamtreehouse.com/production/profile-photos/943792/micro_torger.jpg)
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](https://secure.gravatar.com/avatar/00673c10c8f988c5948f627c73e35e7d?s=96&d=https%3A%2F%2Fecs-static.teamtreehouse.com%2Fassets%2Fcontent%2Fdefault_avatar-445fbbabfc8dc9188fb5967fe43322ee0c3e0dd1e10f378bf8343784af5a13eb.webp&r=pg)
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](https://uploads.teamtreehouse.com/production/profile-photos/740312/micro_Schermata_2014-03-27_alle_14.37.50.png)
Vittorio Somaschini
33,371 PointsHi John.
Just for your info: I have changed your comment into an answer.
Good spot!