本文介绍了Python注释中的“#noqa”是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在搜索Python项目时,我发现用#noqa
注释了几行。
While searching through a Python project, I found a few lines commented with # noqa
.
import sys
sys.path.append(r'C:\dev')
import some_module # noqa
noqa
在Python中是什么意思?
What does noqa
mean in Python? Is it specific to Python only?
推荐答案
向。
For more information, see the Flake8 documentation for Selecting and Ignoring Violations.
这篇关于Python注释中的“#noqa”是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!