我在我的程序中使用了webbrowser.open()
。我想使用输入框从用户那里获取input(link)
。有没有办法做到这一点?
答案 0 :(得分:0)
要从输入框中获取字符串作为变量,您需要执行此操作:
简单的脚本,用于在按钮单击时显示输入框的值。
from Tkinter import *
def getvalue():
e1_var.get()
l1 = Label(root, text=e1_var).grid()
root = Tk()
e1_var = StringVar
e1 = Entry(root, textvariable=e1_var).grid()
b1 = Button(root, command=getvalue).grid()
root.mainloop()