Skip to main content

Text in Python Tkinter

 




from tkinter import *

ak = Tk()
ak.geometry("500x300")

# Text will you provide editor in all window just like notepad editor area
text = Text(ak)
text.pack()

ak.mainloop()


Comments