I'm supposed to write a function max_and_min that accepts a tuple containing integer elements as an argument and returns the largest and smallest integer within the tuple. The return value should be a tuple containing the largest and smallest value, in that order.
for the 'normal' method, i came up with:
def max_and_min(values):return (max(values), min(values))pass
Anyone knows the method of using iterative to come up with an answer?