I have a tuple foo which contains something I don\'t care about and something I do.
foo
foo = (something_i_dont_need, something_i_need)
1st case: foo needs two variable to unpack (length of tuple is 2) . _ is perfectly ok.
unpack
2nd case: gives you index value (slicing)
index value