当前位置:主页 > 软件编程 > Python代码 >

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)

您可能感兴趣的文章:

相关文章