“inconsistent use of tabs and spaces in indentation”

后端 未结 28 2185
北恋
北恋 2020-11-22 00:56

I\'m trying to create an application in Python 3.2 and I use tabs all the time for indentation, but even the editor changes some of them into spaces and then print out \"inc

28条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-22 01:17

    It is possible to solve this problem using notepad++ by replacing Tabs with 4 Spaces:

    1. Choose Search -> Find... or press Ctrl + F
    2. Select the Replace tab
    3. In the box named Search Mode choose Extended(\n, \r, \t, \0, \x...)
    4. In the field Find what : write \t
    5. In the field Replace with : press Space 4 times. Be sure that there is nothing else in this field.
    6. Click on the button Replace All

提交回复
热议问题