Python - pyqt5 - 将文本设置为不同颜色的 qtextbrowser

Python - pyqt5 - Set text to qtextbrowser with different colors

我有一个字符串数组,其中包含正确拼写 个单词和拼写错误 个单词。我想将所有这些词设置为 qtextbrowser 并且我想将拼写错误的词设为 红色 颜色。

wordlist = ['correct1', 'correct2', 'incorrect1', 'correct3', 'incorrect2']

您可以将拼写错误的单词包裹在 html 标记中,并将内联样式设置为显示红色。

def check_misspelled(self, word):
    if ...:  # check if word is misspelled here
        word = '<span style=\" color: #ff0000;\">%s</span>' % word
    self.text_browser.append(word)
cursor = self.textBrowser.textCursor()
cursor.insertHtml('''<p><span style="color: red;">{} </span>'''.format(word))

这将解决 'append to newline every time' 问题。