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 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.