当前位置: 首页 > 图灵资讯 > 行业资讯> python中Pylint的信息类型

python中Pylint的信息类型

来源:图灵python
时间: 2024-07-07 19:32:18

说明

1、*(C)违反编程标准的协议。

2、*(R)重构,针对代码口味不好。

3、*(W)警告python的具体问题。

4、*(E)代码中可能出现的错误。

5、*(F)致命的。

如有错误,pylint将无法进一步处理。

实例

Output:
Usingthedefaulttextoutput,themessageformatis:
MESSAGE_TYPE:LINE_NUM:[OBJECT:]MESSAGE
Thereare5kindofmessagetypes:
*(C)convention,forprogrammingstandardviolation
*(R)refactor,forbadcodesmell
*(W)warning,forpythonspecificproblems
*(E)error,forprobablebugsinthecode
*(F)fatal,ifanerroroccurredwhichpreventedpylintfromdoingfurtherprocessing.

以上就是python中Pylint的信息类型,希望对大家有所帮助。更多Python学习指导:python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。