时间:2020-12-06 09:21:40 | 栏目:Python代码 | 点击:次
如下所示:
try: StrText = self.textBrowser.toPlainText() qS = str(StrText) f = open('/***/test.txt', 'w') print(f.write('{}'.format(qS))) f.close() except Exception as e: print(e)
首先通过toPlainText转化textBrowser里面的内容。
然后将转化后的结果强制str型
最后进行写入操作,如果想累加写入的话可以这么写:
try: StrText = self.textBrowser.toPlainText() qS = str(StrText) f = open('/***/test.txt', 'a') print(f.write('\n{}'.format(qS))) f.close() except Exception as e: print(e)