tkinter text widget as html
问题 I had built tkinter app for sending email. The body of email should get the text with formatting/style from the text widget. Is there any method for doing the same. get method is only given the text but not the style/formatting. 回答1: The text widget has a method named dump which can serialize everything in the text widget. It returns a list of tuples. Each tuple will be of the form (key, value, index). key will be one of the following: text , mark , tagon , tagoff , image , or window . The