What to do with “Unexpected indent” in python?

前端 未结 17 2361
天涯浪人
天涯浪人 2020-11-22 07:46

How do I rectify the error \"unexpected indent\" in python?

17条回答
  •  隐瞒了意图╮
    2020-11-22 08:03

    There is a trick that always worked for me:

    If you got and unexpected indent and you see that all the code is perfectly indented, try opening it with another editor and you will see what line of code is not indented.

    It happened to me when used vim, gedit or editors like that.

    Try to use only 1 editor for your code.

提交回复
热议问题