i am new to python. i was making ui using Tkinter. i have a text box in which user can write multiple lines. i need to search in that lines for certain words and highlight it.
currently when i am searching the desired word in it and trying to color using "tag_configure" and "tag_add", i am getting error "bad index". what i came to know after reading certain pages on net is that the start and end index used in "tag_add" is of the format "row.column"[Please correct me if i am going wrong somewhere]. Can anyone help me in getting the index in this format from tkinter ui directly for highlighting.