Coding/Python 삽질기
Post it 만들기
chobocho
2008. 3. 4. 02:15
[2008. 3. 3]
from Tkinter import *
root = Tk()
text = Text(root, width=20, height=20)
text.pack()
root.mainloop()