Python's interpretation of tabs and spaces to indent

前端 未结 7 2055
孤街浪徒
孤街浪徒 2020-11-30 08:43

I decided, that I learn a bit of Python. The first introduction says that it uses indentation to group statements. While the best habit is clearly to use just one of these w

7条回答
  •  温柔的废话
    2020-11-30 09:04

    Follow PEP 8 for Python style. PEP 8 says: Indentation

    Use 4 spaces per indentation level.

    For really old code that you don't want to mess up, you can continue to use 8-space tabs.

    Tabs or Spaces?

    Never mix tabs and spaces.

    The most popular way of indenting Python is with spaces only. The second-most popular way is with tabs only. Code indented with a mixture of tabs and spaces should be converted to using spaces exclusively. When invoking the Python command line interpreter with the -t option, it issues warnings about code that illegally mixes tabs and spaces. When using -tt these warnings become errors. These options are highly recommended!

提交回复
热议问题