使用未使用的元素进行Python元组分解

时间:2016-04-05 20:42:37

标签: python tuples iterable-unpacking landscape.io

我有一个带有元组分解表达式的for循环。也许它被称为元组解包。

示例代码:

for funcname,func in self.GetMethods:
  # do somthing with func
  # funcname is unused

我的代码检查工具(我正在测试Landscape.io)抱怨funcnameunused variable

我如何满足Landscape.io和其他跳棋?

我看到这样的循环:

for _,func in self.Getmethods:
  # loop body

_ a:

  • 无用,但标识符很短或
  • 某种通配符?

0 个答案:

没有答案