python indentation error – How To Avoid Indentation Error In Python?

python indentation error – The indentation error can occur when the spaces or tabs are not placed properly. Base class of IndentationError is SyntaxError.

python indentation error – How do i resolve the unexpected indent error in python?

Indentationerror error is always because of tab and white space mixed in your python code. We generally use 4 white spaces to present indentation in python.

Python Indentation Error

You are mixing tabs and spaces.

//Find the exact location with:

python -tt yourscript.py

How Does Python Indentation work?

def getData():
    print("Welcome")
 
    if True:
        print("true")
    else:
        print("false")
 
print("Done")

IndentationError Examples

>>>     x = 50
  File "", line 1
    x = 50
    ^
IndentationError: unexpected indent
>>> 

code example:

 name = "Dr. Rajdeep" 
      if len(name) > 0: 
          results = 'Yay! Dr is not available' 
          print results 

Don’t Miss : Importerror: No Module Named Request

I hope you get an idea about python indentation error.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment