Implement the following problem as a self-contained pythonmodule.
Write a program that continually prompts the user for positiveinteger values and stores them in a list. You should stop promptingwhen the user enters a negative integer value.
When the user is done entering values, you should print the listof integers they have provided in sorted order. You should thencompute the mean and standard deviation of the values in thelist.
Recall that the mean is just the arithmetic average…the sum ofall the values divided by the number of values. In mathematicsnotation we represent the mean with the Greek letter mu, .
In statistics, standard deviation
OR
OR