tkinter------Entry

版权声明: https://blog.csdn.net/qq_41548574/article/details/80930799

Entry:用于显示一个可供输入的文本款,具体用法

from tkinter import *
root = Tk()

Entry(root,textvariable = e).pack()
root.mainloop()

猜你喜欢

转载自blog.csdn.net/qq_41548574/article/details/80930799