Suppose we have a list of numbers. We want to find the smallest and largest number in our sequence. Write the code using built-in functions.
You can separate the numbers you get from the input using the split() function.
Suppose we have a list of numbers. We want to find the smallest and largest number in our sequence. Write the code using built-in functions.
You can separate the numbers you get from the input using the split() function.
Sample Input 1:
50 45 100 12 26Sample Output 1:
12 100Create a free account to access the full topic