I don't know how to fix the error (ValueError: could not convert string to float: 'High'). Any help would be much appreciated.
high = 0
with open('file.csv', 'r') as csv_file:
csv_reader = csv.reader(csv_file)
for line in csv_reader:
if float(line[2]) > high:
high = float(line[2])