我正在尝试找出如何将变量传递给urlopen()
。
在我的第一个代码项目中,我让用户在输入框中输入URL,然后将其传递给变量。
输入框:
eBox = Entry(root, textvariable=url)
将输入传递给变量:
url=StringVar()
然后我有一个URL定义:
def addy():
text = url.get()
if not url.get():
msg = messagebox.showwarning( "Project", "You must enter a URL!")
我的执行代码:
def execute():
execute = urllib.request.urlopen() #how do I use the variable within the ()?
我试图解决成为新编码器的问题是我如何使用execute = urllib.request.urlopen()
来使用现在持有用户输入的变量,以便它执行该URL。