gpt4 book ai didi

python - PyLint:尝试解包非序列

转载 作者:太空狗 更新时间:2023-10-30 01:14:05 25 4
gpt4 key购买 nike

我是 PyLint 的新手,很高兴在我的源代码上看到很多警告。尽管大多数警告都很明显,但有些警告对我来说没有意义。例如,

def foo(a, b):
if b is not None:
return a, b
else:
return None

result = foo(a, b)
if result is None:
return get_something(a)

value1, value2 = result

foo(a, b) 的返回值可以是元组或无。从 foo 获取返回值后,我检查它是否是有效结果。 (这有点类似于在 C/C++ 中检查 NULL 指针)但是,PyLint 提示这样的代码; Attempting to unpack a non-sequence [W:unpacking-non-sequence] 除了抑制此警告外,是否可以避免此类警告?

最佳答案

这有点没有答案,但这就是我编写这段代码的方式。最重要的是,代码必须是可预测的,我发现总是返回相同数量的可预测返回值。这也使文档更容易,以下代码也更短一些。

def foo(a, b):
if b is not None:
return a, b
return None, None

value1, value2 = foo(a, b)
if value1 is None: # Alt: value1 is None or value2 is None
return get_something(a)

关于python - PyLint:尝试解包非序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32500242/

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