Python Program to Find Largest and Smallest Item in a Tuple

Write a Python Program to Find the Largest and Smallest Item in a Tuple. Here, we use the Tuple max and min functions to return the largest and smallest Tuple items.  # Tuple Largest and Smallest Item lgsmTuple = (78, 67, 44, 9, 34, 88, 11, 122, 23, 19) print(“Tuple Items = “, lgsmTuple) print(“Largest … Read more