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 Python Basics All Together Now Handle Exceptions

Anthony Costanza
Anthony Costanza
2,123 Points

When I hit return after the last line - it doesn't line up the margin right - why?

When I hit return after the last line - it doesn't line up the margin right - why?

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

If you mean in the coding editor indentation, the editor will assume you want to continue adding lines to the currently indented block until you delete the auto-added spaces. Leaving extra spaces on the last blank line is not a syntax error, though some linters (style evaluation programs) will flag trailing spaces as bad form.

If the issue is during the running of your program, you’ll need to share your code to see the issue.

Post back if you need more help. Good luck!!!