CS Electrical And Electronics
@cselectricalandelectronics

What is indentation error in python?

All QuestionsCategory: PythonWhat is indentation error in python?
CS Electrical And Electronics Staff asked 4 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.