python如何在不使用pandas的情况下读取CSV文件指定的列

def loadData(fileName):
    x = []
    y = []
    fl = csv.reader(open(fileName,'r'))
    x = list(fl)
    y.append([row[13] for row in fl])
    return x, y 

I use this but got y is empty, my csv data is enter image description here

我想让x是所有行,而y输出[19.2,20.8]