nice text tkinter

Solutions on MaxInterview for nice text tkinter by the best coders in the world

showing results for - "nice text tkinter"
Ophélie
12 Feb 2017
1import tkinter as tk
2  
3root = Tk()
4root.geometry("250x170")
5T = Text(root, height = 5, width = 52)
6Fact = """A man can be arrested in
7Italy for wearing a skirt in public."""
8
9T.pack()
10T.insert(tk.END, Fact)
11tk.mainloop()
12
queries leading to this page
tkinter custom textnice text tkinter