I'm having difficulty getting two parameters returned from a function as a tuple:
>>> ir7(41,7)
(966, 1023, 571, 396, 105, 2, 3)
If I want to get specified tuple I use this:
>>> ir7(41,7)[0]
966
but what if I want to get 1st, 3rd and 4th element from the tuple. What is the correct syntax? Something like:
a,b,c= ir7(41,7)[1][3][4]