gpt4 book ai didi

python - 如何将 Pylint 或其他 linters 与 Jupyter 笔记本一起使用?

转载 作者:行者123 更新时间:2023-11-28 18:56:20 32 4
gpt4 key购买 nike

是否可以在 Jupyter Notebook 中使用 linter?

最佳答案

  • 是的,这是可能的
  • 您可以为 Jupyter Notebook 安装 pycodestyle,它类似于 pylint。您可以在 Jupyter Notebook shell 中使用以下命令:
# install
!pip install pycodestyle pycodestyle_magic


# load
%load_ext pycodestyle_magic


# use
%%pycodestyle
def square_of_number(
num1, num2, num3,
num4):
return num1**2, num2**2, num3*

# Output
2:1: E302 expected 2 blank lines, found 0
3:23: W291 trailing whitespace

  • 检查this询问更多细节。我的回答受到链接中答案的启发。
  • 查看 this更多类似的 linters 和解决方案的问题。

关于python - 如何将 Pylint 或其他 linters 与 Jupyter 笔记本一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58207645/

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