Posted in Python onJune 21, 2019
如下所示:
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文档的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
pyqt5之将textBrowser的内容写入txt文档的方法
- Author -
coding上下求索声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@