Python program to Print Largest Set Item

mxSet = {25, 67, 36, 98, 11, 32, 19, 80, 91}
print("Set Items = ", mxSet)
print("Largest Item in mxSet Set = ", max(mxSet))

OUTPUT:

Set Items =  {32, 98, 67, 36, 11, 80, 19, 25, 91}
Largest Item in mxSet Set =  98

Sharing Is Caring

Leave a Comment