gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 09:45:48 25 4
gpt4 key购买 nike

我有一个字符串数组,其中包含正确拼写 单词和拼写错误 单词。我想将所有这些单词设置为 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)

关于Python - pyqt5 - 将文本设置为不同颜色的 qtextbrowser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49852012/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com