我正在尝试将名为 checks 的变量列表传递给函数 installFunc,由于某种原因它似乎不起作用,这是我(认为是)相关代码:
def installFunc(checks):
subprocess.call("md c:\MGInstall", shell=True)
subprocess.call (u"net use w: \\it01\files")
if checks[0] == 1:
subprocess.call(u"w:\\software\\snagitup.exe")
if checks[1] == 1:
subprocess.call(u"w:\\software\\camtasia.exe")
if checks[2] == 1:
urllib.urlretrieve(u"LONGURL", u"c:\\MGinstall\\gotomeeting.exe")
subprocess.call (u"c:\\MGinstall\\gotomeeting.exe")
if checks[3] == 1:
sixtyfourcheck()
if is64bit == True:
urllib.urlretrieve(u"LONGURL", u"c:\\MGinstall\\tortoiseSVN.exe")
elif is64bit == False:
urllib.urlretrieve(u"LONGURL", u"c:\\MGinstall\\tortoiseSVN.exe")
#urllib.urlretrieve(u"LONGURL", u"c:\\MGinstall\\MGinstall.exe")
#subprocess.call (u"c:\\MGinstall\\MGinstall.exe")
#subprocess.call (u"w:\\printers\\installer\\printer.exe")
app = Tk()
w = Label(app, text="IT Automatic Installer")
w.pack()
text = ["Snagit", "Camtasia", "GotoMeeting", "TortoiseSVN"]
variables = []
for name in text:
variables.append(IntVar())
Checkbutton(text=name, variable=variables[-1]).pack()
checks = [variable.get() for variable in variables]
b = Button(text="Install", command= lambda : installFunc(checks))
b.pack()
app.mainloop()
现在,我尝试了一些不同的东西——我实际上是由堆栈溢出给出的 Lamba 部分——我在理解它是如何工作的时候遇到了一些麻烦。
但我遇到的最大问题是 - 为什么不将检查传递给 installFunc()?我希望将检查的完整列表(与我放入其中的项目一样多)传递给 installFunc()。