Question: Minimum of Three with Python Create a Python script to code the following: Ask the user to enter three whole numbers. Tell the user which

Minimum of Three with Python Create a Python script to code the following: Ask the user to enter three whole numbers. Tell the user which number is the lowest. Use the fewest possible conditions needed to get the correct answer. Naming your Python file: YourLastNameMinOfThree.py Use your actual last name. Testing your code Test your code using all possible use cases. Make sure each logic path is tested. For this assignment, testing can be accomplished by inputting the following sequences of numbers: 2 2 5 5 7 7 5 7 2 7 2 5 7 5 7 2 5 2 Notice we are checking every possible ordering of the numbers: low med high low high med med low high med high low high low med high med low Then, test again using all negative numbers: NNU -2 -2 -5 -5 -7 -7 -2 -7 -2 -5 -7 -5 -7 -2 -5 -2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
