Question: Please code this in python , in basic only thank you! i need this asap Write a python program that accepts an indefinite number of
Please code this in python , in basic only thank you! i need this asap

Write a python program that accepts an indefinite number of real numeric values. The number of the values to be entered is determined by the user. Values are stored in a list. Once the values are entered, sort the list elements and determine and display both the largest and the smallest among the values. Display the contents of the list as well. Sample Output 1 How many floating point values to enter? -3 INVALID INPUT. Please enter a non-zero value. How many floating point values to enter? INVALID INPUT. Please enter a non-zero value. How many floating point values to enter? 3 Enter value 1: 16 Enter value 2: 83 Enter value 3: 2.5 Contents of List: [2.5,3.0,16.0] Highest value: 16.000000
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
