Get your own Python server Result Size: 625 x 565
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