pyqt5之將textBrowser的內容寫入txt文件
阿新 • • 發佈:2018-12-12
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)
我曾經跨過山和大海,也穿過人山人海,我曾經擁有著的一切,轉眼都飄散如煙,我曾經失落失望失掉所有方向,直到看見平凡才是唯一的答案。 ——韓寒《平凡之路》