读取PSV文件数据:
data=r'C:\Users\*******\training.psv'
Coursedata=[]
Coursedataform=[]
dic={}
with open(data,'r',newline="") as psvfile:
for line in psvfile.readlines():
Coursedata.append(line[0:len(line)-1])#去掉最后的换行符
Coursedata = Coursedata[1:]#去掉抬头第一行,只保留数据
print(len(Coursedata))
for i in Coursedata:
Coursedataform.append(i.split("|"))#psv文件使用|符号分割数据