上传者: 38640985
|
上传时间: 2021-10-25 22:15:44
|
文件大小: 57KB
|
文件类型: -
python读取txt文件:(思路:先打开文件,读取文件,最后用for循环输出内容)
1、读取
1.1基于python csv库
#3.读取csv至字典x,y
import csv
# 读取csv至字典
csvFile = open(r'G:\训练小样本.csv', "r")
reader = csv.reader(csvFile)
#print(reader)
# 建立空字典
result = {}
i=0
for item in reader:
if reader.line_num==1:
continue
result[i]=item
i=i+1
# 建立空字典
j=0
xx