What is indentation error in python?

All QuestionsCategory: PythonWhat is indentation error in python?
Chetan Shidling Staff asked 5 years ago

I need short information.

1 Answers
chetan shidling answered 4 years ago

If you are not giving any proper space then this error will occur. For example.
If(a==0)
    print(” One”)
 
print(” Two”)
print(” Three)
 
If the space is not equal in some cases it will show intentation error.