import pandas
import numpy
df = pandas.read_csv("cars2.csv")
v = df['Weight']
#Finding the standard deviation:
std = numpy.std(v)
print(std)