Home /
Expert Answers /
Computer Science /
please-help-me-write-this-code-in-python-with-syntax-and-with-the-correct-wording-as-shown-in-the-qu-pa273
(Solved): Please help me write this code in Python with syntax and with
the correct wording as shown in the qu ...
Please help me write this code in Python with syntax and with
the correct wording as shown in the question below!
Thank you very much in advance, I will give you a thumbs up!
Read a list of integers from input and calculate the mean. Output this mean value on one line, and then print all list values above the mean in sorted order (lowest to highest). Ex: If the input is: 3 99 3 0 27 the output is: List mean = 26.4 27 99 Follow each output value by a space and do not end with newline.
# declaring the list and a variable sum which holds the sum of the elements of the list. int_list, sum = [], 0 # Taking the size of the list size = int(input("Enter the size