> I have a function that returns a tuple. > But I only want the second value of this tuple. > So I tried `(,a) =f()`. But it does not work. > > I'd like to is there any syntax which works? > Note `(a,) = (1,2)` does work.
I don't think it's too useful.... you can just do `a = f()[2]` or `_, a = f()`