Question: use python language to write code for: Suppose we have a list x = [43,34,22,32,62,12]. Write a Python program to figure out the smallest number
use python language to write code for:
Suppose we have a list x = [43,34,22,32,62,12]. Write a Python program to figure out the smallest number in the list without using the min() function.
Hint: similar to page 8 on the slide. You can use an arbitrary large number as the temporary smallest number to start the program. Such as temp_smallest = 100.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
