this is my first question here... Im doing a project that highlight words entered in a list How i can highlight it? my code:
import tkinter
root = tkinter.Tk()
words = ["Potatos","Tomatoes","Carrots"]
box = tkinter.Text(root)
box.pack()
root.mainloop()
How i can highlight the text of a color if i enter a word that is in the words list? im sorry if i sound stupid but im a novice