Question: Write a program using Python that asks for a string input containing numbers as a elements of the set separated by a comma. Extract the
Write a program using Python that asks for a string input containing numbers as a elements of the set separated by a comma.
Extract the inputted string and created a set out from it. You may use the split () function to get a list of numerical characters using comma as a delimiter.
From the created set, identify the minimum and maximum values and print it on the next lines.
Inputs: 1. One line containing a string for the elements of the set.
Sample Output:
Set: 2,3,4,5,6,123,23,23 Minimum: 2 Maximum: 123
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
