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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…