Get your own Python server Result Size: 625 x 533
Python code
data.csv
 
x
 
import pandas
import numpy
df = pandas.read_csv("data.csv")
v = df['Weight']
#Finding the standard deviation:
std = numpy.std(v)
print(std)
238.73737443185826