#WSQ07 – Lists

Here are the instructions:

Create a program that asks the user for 10 numbers  (floating point). Store those numbers in a list. Show to the user the total, average and standard deviation of those numbers.

 

It was easy, just needed to import the statistics module to perform the operations. The only trick was not to use int(input()) but float(input()) as the user was asked to enter floating numbers.

Leave a comment