记事本
上一节
下一节

代码
import tkinter as tk
t=tk.Tk()
t.title('记事本')
t.geometry('500x466')
tk.Text().place(x=3,width=494,height=463)
tk.mainloop()
目录

代码
import tkinter as tk
t=tk.Tk()
t.title('记事本')
t.geometry('500x466')
tk.Text().place(x=3,width=494,height=463)
tk.mainloop()