hi i have text in a tkinter text widget, how would i highlight specific letters?
the code above just adds s to the end of the text, do you know what i am doing wrong ?
Code:
Text.tag_config("s", background="yellow") Text.insert(END,("s"))
Comment