アットウィキロゴ

jjjj9

f = open('data.csv', 'r',encoding='UTF-8')
 
x=[] 
for line in f:
    x.append(line)
 
f.close()
y=[]
for x1 in x:  
    x2=x1.split(",")
    z=0
    if "n" in x2[1]:z=100
    if z<50:y.append(float(x2[1]))
 
print(y[0])
最終更新:2018年05月21日 13:39