Python 约定不会使用但仍从函数返回的变量

发布于 2024-12-08 17:42:44 字数 294 浏览 2 评论 0原文

如果我有一个如下所示的函数:

def foo():
    return 1, 2

我通常会这样调用该函数:

g, f = foo()

但如果我从不打算使用返回的第二个值,是否有一种调用该函数的方法可以清楚地表明这一点,所以将来我不会被位置填充变量分散注意力?

例如,类似:

g, not_used = foo()

似乎可能有一种标准方法可以做到这一点。

If I have a function like the following:

def foo():
    return 1, 2

I would normally call the function like:

g, f = foo()

But if I never plan on using the second value returned, is there a way of calling the function that makes that clear, so in the future I won't get distracted by a place-filler variable?

For example, something like:

g, not_used = foo()

Seems like there's probably a standard way to do this that is out there.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

流星番茄 2024-12-15 17:42:44

您可以直接获取第一项:

g = foo()[0]

我认为 pylint 推荐 _虚拟

g, _ = foo()

You could get the first item directly:

g = foo()[0]

I think pylint recommends _ or dummy:

g, _ = foo()
奢华的一滴泪 2024-12-15 17:42:44

我通常只要求我关心的值的索引

g = foo()[0]

I usually just ask for the index of the value I care about

g = foo()[0]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文