Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started