1.

Write a program that prints the maximum value in a Tuple?

Answer»

tuple = (456, 700, 200)

print(“max value : “ , max(tuple))

Output:

max value : 700



Discussion

No Comment Found