Home  >  Article  >  Backend Development  >  Solution to "IndentationError: unexpected indent" error in python

Solution to "IndentationError: unexpected indent" error in python

黄舟
黄舟Original
2017-10-16 11:06:1024719browse

This article mainly introduces relevant information on how to solve the "IndentationError: unexpected indent" error in Python. I hope this article can solve such problems. Friends in need can refer to it

Error message:
Solution to "IndentationError: unexpected indent" error occurs in python

Solution:

#Python is a language that is very sensitive to indentation. The most common situation is that the mixed use of tabs and spaces will cause Causes errors, or incorrect indentation

The code in the following picture:

The above code can run normally for the first time.

But an error was reported when running it for the second time. The reason is that a space was added before e for the second time." "

The solution is just to replace the space before e. Just delete it

The above is the detailed content of Solution to "IndentationError: unexpected indent" error in python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn