How to fix Python indentation

前端 未结 13 1447
梦毁少年i
梦毁少年i 2020-11-22 08:17

I have some Python code that have inconsistent indentation. There is a lot of mixture of tabs and spaces to make the matter even worse, and even space indentation is not pre

13条回答
  •  醉梦人生
    2020-11-22 09:08

    Using Vim, it shouldn't be more involved than hitting Esc, and then typing...

    :%s/\t/    /g
    

    ...on the file you want to change. That will convert all tabs to four spaces. If you have inconsistent spacing as well, then that will be more difficult.

提交回复
热议问题