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!

For new projects, spaces-only are strongly recommended over tabs. Most editors have features that make this easy to do.

相关文章:

  • 2021-05-23
  • 2022-01-13
  • 2022-12-23
  • 2021-06-04
  • 2021-06-04
  • 2022-12-23
  • 2021-10-02
猜你喜欢
  • 2022-12-23
  • 2021-09-16
  • 2021-11-03
  • 2021-10-02
  • 2021-12-10
  • 2022-12-23
  • 2022-01-05
相关资源
相似解决方案