Answered step by step
Verified Expert Solution
Question
1 Approved Answer
INSTRUCTIONS: 1. Please make sure you will do all the programs in jupyter notebook. 2. Please make sure that you will submit the screen shot
INSTRUCTIONS: 1. Please make sure you will do all the programs in jupyter notebook. 2. Please make sure that you will submit the screen shot of all the programs with input as well as output of the program. You have to submit the screen shot of the code of the program, input to the program and output of the program. Without above mentioned required details, you will not get any marks. 3. Write a function that takes an integer minutes and converts it to seconds. e.g. convert(5) 300 convert(3) 180 convert(2) 120 4. Create a function that takes a list of numbers and returns the smallest number in the list. Example: find_smallest_num ([34, 15, 88, 2]) 2 find_smallest_num ([34, -345, -1, 100]) -345 find_smallest_num ([-76, 1.345, 1, 0]) -76 find_smallest_num ([0.4356, 0.8795, 0.5435, -0.9999]) -0.9999 find_smallest_num ([7,7, 7]) 7
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