要读取一个csv格式下的数据并计算每列大小值该怎么写呀写是这个样子:
应该是next(myfile)for line in myfile: x = line.split(',') c = float(x[1]) + float(x[2])