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
Richard McKee
2,670 PointsCan some one explain indent errors and how to stop having them all the time in Python?
I feel like every time I write python it's always the same indent error. Does any one have best practices to not getting any errors?
1 Answer
Alexander Davison
65,469 PointsIt is simple.
If you have a block (a line ending with a colon), indent by four spaces.
name = input("What your name? ")
if name == "Alex":
print("Nice to meet you, Alex!")
And if you have blocks in blocks, just indent that an extra 4 spaces.
def hello():
name = input("What's your name? ")
if name == "Alex":
print("Nice to meet you!")
And, at the end of any block, you de-dent the line
name = input("What your name? ")
if name == "Alex":
print("Nice to meet you, Alex!")
print("Cool!")
I hope you understand now! ~alex