import tkinter as tk import tkinter.scrolledtext as scrolledtext import tkinter.font as tkfont import tkinter.constants as tkc root = tk.Tk() # スクロール可能なテキストウィジェットを作成 text = scrolledtext.ScrolledText(root, wrap=tkc.WORD) text.pack(fill=tkc.BOTH, expand=True) # HTMLを設定 html = """ HTML in Tkinter Text Widget

Heading 1

This is a paragraph.

""" # HTMLをテキストウィジェットに挿入 text.insert(tkc.END, html) # フォントを設定 font = tkfont.Font(family="Arial", size=12) text.configure(font=font) root.mainloop()