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

Python

Torger Angeltveit
Torger Angeltveit
11,228 Points

Cant 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

Your 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
John McErlain
12,508 Points

It 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
Vittorio Somaschini
33,371 Points

Hi John.

Just for your info: I have changed your comment into an answer.

Good spot!