pyqt5之将textBrowser的内容写入txt文档的方法
时间: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)
栏 目:Python代码
下一篇:Jupyter中直接显示Matplotlib的图形方法
本文标题:pyqt5之将textBrowser的内容写入txt文档的方法
本文地址:http://www.codeinn.net/misctech/29913.html