I'm confused on how to make a function that calculate the minimum values from all variable
for example
>>>Myscore1 = 6
>>>Myscore2 =-3
>>>Myscore3 = 10
the function will return the score and True if it is minimum value or else it is False . So from the above example the output will be:
>>>[(6,False),(-3,True),(10,False)]
min(scores)Myscores = []; Myscores.append(6)etc.