我正在使用numpy.loadtxt
从文本文件中提取大量数据,然后使用循环将不同的列放入不同的字典键中,如下所示:
f = numpy.loadtxt(datafile, skiprows=5) # Open and read in the file, skipping to the data
d = {} # Create empty dictionary
for x in range(0, f.shape[1]):
d[x] = f[:,x] # Loop through the columns of the datafile, putting each one into
#a dictionary index
文本文件中数组上方的行包含数组中变量的所有标题,有没有办法获取每个变量名称并将其作为相关字典的键名?(即,第一列 = 数据,d[日期]={14/11/12,15/11/12 .... 等)