好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

pyqt5之将textBrowser的内容写入txt文档的方法

如下所示:

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)

以上这篇pyqt5之将textBrowser的内容写入txt文档的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持自学php网。

查看更多关于pyqt5之将textBrowser的内容写入txt文档的方法的详细内容...

  阅读:248次