最佳答案
有没有一种方法可以使用表达式从Python中的元组获取一个值?
def tup():
return (3, "hello")
i = 5 + tup() # I want to add just the three
我知道我能做到:
(j, _) = tup()
i = 5 + j
但这会给我的函数增加几十行,使其长度加倍。