import cPickle as p
g=p.load(file(r'D:\0_500_my\VITdata\vocabularystatistics.dat'))
f=p.load(file(r'D:\0_500_my\VITdata\infoGain.dat'))
fid=file('2.txt','a')
for key,val in g.iteritems():
    print >>fid, '%s,%s'%(key,val)
    fid.flush()
fid.close()
   

相关文章:

  • 2021-06-29
  • 2022-12-23
  • 2021-08-10
  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
  • 2021-11-27
  • 2022-02-23
猜你喜欢
  • 2021-04-12
  • 2022-12-23
  • 2021-11-23
  • 2021-09-16
  • 2022-02-09
相关资源
相似解决方案