我有一个带有元组分解表达式的for循环。也许它被称为元组解包。
示例代码:
for funcname,func in self.GetMethods:
# do somthing with func
# funcname is unused
我的代码检查工具(我正在测试Landscape.io)抱怨funcname
为unused variable。
我如何满足Landscape.io和其他跳棋?
我看到这样的循环:
for _,func in self.Getmethods:
# loop body
是_
a: