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