8 lines
99 B
Python
8 lines
99 B
Python
from tkinter import *
|
|
|
|
root = Tk()
|
|
|
|
mainTextBox = Text(root, width=40, height=40)
|
|
|
|
root.mainloop()
|