简体   繁体   English

Python重写而不是将数据附加到.csv文件中

[英]Python rewrite instead of appending the data in the .csv file

I have 50 files that I process, then write output of the each file to the .csv file, but, it gives me only the last file output to the .csv file 我有50个要处理的文件,然后将每个文件的输出写入.csv文件,但是,它只给我最后一个输出到.csv文件的文件

with open('output.csv','a+') as out:
    out.write(filename)
    out.write('\n')
    out.write('\n') 
    out.write(';''Golden readback from vivado before fault-injection')
    out.write(';''Readback from vivado after the injection')
    out.write(';''Real-Delta')
    out.write('\n')
# original is my data.
    for row in original:
     for col in row:      
      out.write('{0};'.format(col))
     out.write('\n')
    out.write('\n')
out.close()  

Any idea how can I put all files output to the same .csv file. 知道如何将所有文件输出到相同的.csv文件。

You are appending your results in your code using 'a+' mode, try 'w+' instead, it should work. 您正在使用“ a +”模式将结果追加到代码中,请尝试使用“ w +”,它应该可以工作。

with open('output.csv','w+') as out:
    out.write(filename)
    out.write('\n')
    out.write('\n') 
    out.write(';''Golden readback from vivado before fault-injection')
    out.write(';''Readback from vivado after the injection')
    out.write(';''Real-Delta')
    out.write('\n')
# original is my data.
    for row in original:
     for col in row:      
      out.write('{0};'.format(col))
     out.write('\n')
    out.write('\n')
out.close()
import glob
from itertools import islice
import linecache

path = '*.rbd'
#path='original-adder.rbd'
files=sorted(glob.glob(path))

for filename in files:

 del_lines = 101
 with open(filename,'r') as f:

  i=1
  while i <= del_lines:
   line1 = f.readline()
   i+=1

  i=0    
  count0_bram = 0
  count1_bram = 0
  count0_nonbram = 0
  count1_nonbram = 0
  totalbits = 0
  totalbitsones = 0
  totalbitszeros = 0

  NON_BRAM_bits_zero_original=57411950
  NON_BRAM_bits_ones_original=3110418

  difference_zero_non_BRAM = 0
  difference_ones_non_BRAM = 0


# COUNT NON BRAM

  for i in range(102,1891426):
   line=linecache.getline(filename,i)

   count_zeros=line.count('0')
   count0_nonbram=count0_nonbram+count_zeros

   count_ones=line.count('1')
   count1_nonbram=count1_nonbram+count_ones

  i=0
# to count BRAM

 #lines=islice(fin,1891427,1903714)
  for i in xrange(1891427,2432181):
    line=linecache.getline(filename,i)


   #line=line.strip()
    count_zeros=line.count('0')
    count0_bram=count0_bram+count_zeros

    count_ones=line.count('1')
    count1_bram=count1_bram+count_ones
  i=0

  totalbits=count0_bram+count1_bram+count0_nonbram+count1_nonbram
  totalbitsones=count1_bram+count1_nonbram
  totalbitszeros=count0_bram+count0_nonbram
  difference_zero_non_BRAM = count0_nonbram-   NON_BRAM_bits_zero_original # new -old
  difference_ones_non_BRAM = count1_nonbram-NON_BRAM_bits_ones_original # new - old


  print filename
  print "-------------------------------------------------"
  print "Total Bits:%d"%totalbits
  print "Number of totalbits-zeros: %d." %totalbitszeros
  print "Number of totalbits-ones: %d." %totalbitsones
  print "Number of BRAM-Zeros: %d." %count0_bram
  print "Number of BRAM-ones: %d." %count1_bram
  print "Number of NON_BRAM-Zeros: %d." %count0_nonbram
  print "Number of NON_BRAM-Ones: %d." %count1_nonbram
  print "difference_zero_non_BRAM:%d."%difference_zero_non_BRAM
  print "difference_ones_non_BRAM:%d."%difference_ones_non_BRAM
  print "--------------------------------------------------"



original= [['Total Bits', 77826496,totalbits,totalbits-77826496],['Total number of bits @0',74651972,totalbitszeros,totalbitszeros-74651972],['Total number of bits @1',3174524,totalbitsones,totalbitsones-3174524],['Totalnumber of BRAM bits-zero',17240022,count0_bram,count0_bram-17240022],['Total number of BRAM bits-ones',64106,count1_bram,count1_bram-64106],['Total  number of non-BRAM bits@0',57411950,count0_nonbram,count0_nonbram-57411950],['Total number of non-BRAM bits@1',3110418,count1_nonbram,count1_nonbram-3110418]]

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM