每次我在python中运行脚本时,需要生成一个新的文本文件并保存它

时间:2015-02-24 22:58:02

标签: python python-2.7

我目前有一个程序附加到一个名为" ConcentrationData.txt"的现有文件中。但是,我想在每次运行程序时创建一个新的文本文件,最好使用具有日期和时间的文件名。这是我当前的脚本:

def measureSample(self):
    sys.stdout.flush()
    freqD1, trandD1, absoD1 = dev.getMeasurement(LED_TO_COLOR='D1'])
    freqD2, trandD2, absoD2 = dev.getMeasurement(LED_TO_COLOR='D2'])
    absoDiff= absoD1 - absoD2
    Coeff= 1 
    Conc = absoDiff/Coeff
    Conc3SD = '{Value:1.{digits}f'.format(Value = Conc, digits=3)
    self.textEdit.clear()
    self.textEdit.setText('Concentration is {0}'.format(Conc3SD))

    timeStr = time.strftime('%m-%d-%Y %H:%M:%S %Z')
    outFile = open('ConcentrationData.txt','a')
    outFile.write('{0} || Concentration: {1}'.format(timeStr, Conc3SD))
    outFile.close()

我该怎么做呢?

(另外,我对python很陌生,所以如果这听起来像个愚蠢的问题,我很抱歉。)

1 个答案:

答案 0 :(得分:3)

您可以在以下

行中执行某些操作
class my_class:
   _data_fd = None

   def __init__(self,create,filename):
       if(create):
           self._data_fd = open(filename,'w')

   def __del__(self):
       if(self._data_fd != None):
           self._data_fd.close()

   def measureSample(self):
       ##do something here
       outFile = self._data_fd
       outFile.write('{0} || Concentration: {1}'.format(timeStr, Conc3SD))


if __name__ == '__main__':
    timeStr = time.strftime('%m-%d-%Y_%H_%M_%S_%Z') #use unerscore instead of spaces
    filename = "{0}.{1}".format("Data.txt",timeStr)
    imy_class = my_class(1,filename)
    imy_class.measureSample()
    imy_class.measureSample() ##call multiple times the fd remains open for the lifetime of the object
    del imy_class   ### the file closes now and you will have multiple lines of data