nice text tkinter code example
Example: nice text tkinter
import tkinter as tk
root = Tk()
root.geometry("250x170")
T = Text(root, height = 5, width = 52)
Fact = """A man can be arrested in
Italy for wearing a skirt in public."""
T.pack()
T.insert(tk.END, Fact)
tk.mainloop()