I am using pycharm IDE for python development it works perfectly fine for django code so suspected that converting tabs to spaces is default behaviour, however in python IDE is giving errors everywhere because it can't convert tabs to spaces automatically is there a way to achieve this.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Change the code style to use spaces instead of tabs:
Then select a folder you want to convert in the Project View and use Code | Reformat Code.
回答2:
For selections, you can also convert the selection using the "To spaces" function. I usually just use it via the ctrl-shift-A then find "To Spaces" from there.
回答3:
This only converts the tabs without changing anything else:
Edit -> Convert Indents -> To Spaces 回答4:
ctrl + shift + A => open pop window to select options, select to spaces to convert all tabs as space, or to tab to convert as tab.