アットウィキロゴ

えx000++

import numpy as np
import matplotlib.pyplot as plt
 
data= np.loadtxt('cars.csv',delimiter=',',skiprows=1)
 
x=[]
y=[]
for s in range(len(data)): 
    x.append(data[s][1])
    y.append(data[s][2])
 
print(y) 
最終更新:2018年01月11日 00:58