我的目标是创建一个标签列表(或在大标签上),以便每个标签显示一个唯一的输出。我的程序从滚动文本中读取输入并检查错误,然后以列表的形式显示所有错误。
def check():
import enchant
from enchant.checker import SpellChecker
chkr=SpellChecker("en_US")
chkr.set_text(str(bd.get("1.0", END)))
for err in chkr:
out3=Label(window, text=("ERROR:", err.word), fg="orange", bg="black", font="ariel")
out3.grid(row=19, column=3, columnspan=5)