Answer to Question #3394 in Python for mukunda

Question #3394
In the above example in-built min function is used to calculate the minimum value of the tuple. Write a function to calculate the minimum of tuple and also average of the tuple.
1
Expert's answer
2011-08-04T12:32:30-0400
def my_min_and_avg (tuple):
min = tuple[0]
sum = 0
for s in tuple:
& min = (min < s) and min or s
& sum += s
return min, sum/len(tuple)

tuple = (10, 20, 30)
print(my_min_and_avg(tuple))

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS