For the record, im a python noob So dont expect to mutch of me.
Lets say i have a Tuple:,
Tuple = {1:'A',5:'B'}
how do I return the second item of this tuple?
I Tried googling it, but I couldnt find anything
I tried
Tuple = {1:'A',5:'B'}
return Tuple[1]
I wanted to return 5 But, It returned 'A'. I know why this is, I just want to know how to return the 2nd item.