Create a Python program that prompts for a comma separated list of numbers and prints the standard deviation of the list of numbers entered. The standard deviation, , of a sequence of numbers can be computed using the following equation.
Where is the average of all the numbers in the sequence.
Create a Python program that prompts for a comma separated list of numbers and prints the standard deviation of the list of numbers entered. The program should use list comprehension.
Create a Python program that reads the EPA data file from the last lab and prints the minimum fuel economy. The program should use list comprehension.