dataset=[]
f= open('auto-mpg-data.csv')
csv_f=csv.reader(f)
for row in csv_f:
dataset.append(row)
#reading column
mpg=[]
for row in dataset:
mpg.append(row[0])
print(mpg)
print(max(mpg))
this is the data. When I try to find the maximum value from this list it show 9 instead of 46.6. How can I get this value?