84.9k views
0 votes
Write a program to display the s

tandard/deviation of 100 sets of numbers already stored in an array​

1 Answer

5 votes

import random

import statistics

number = [1, 2, 3, 4, 5]

print("Standart deviation is: ", statistics.stdev(number))

Please edit the array before compiling the code.

User Stuti Rastogi
by
4.3k points