gpt4 book ai didi

python - 进口订单编码标准

转载 作者:IT老高 更新时间:2023-10-28 21:32:24 25 4
gpt4 key购买 nike

PEP8建议:

Imports should be grouped in the following order:

  1. standard library imports
  2. related third party imports
  3. local application/library specific imports

You should put a blank line between each group of imports.

有没有办法使用静态代码分析工具检查包中的任何地方是否违反标准,例如 pylintpyflakespychecker, pep8?


违规示例:

from my_package import my_module
from django.db import models
import os

正确的导入方式:

import os

from django.db import models

from my_package import my_module

最佳答案

当前版本的 pylint 现在执行此操作,并将其报告为错误类 C0411。

关于python - 进口订单编码标准,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22722976/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com