脚本运行没有问题,但是当我尝试制作.exe时,它将引发以下错误:
Syntax error in d:\Archive\Work\Python\Project v2\tkintertest1.py
File "d:\Archive\Work\Python\Project v2\tkintertest1.py", line 810
def changeplan(*args, widget=None):
^
SyntaxError: invalid syntax
我尝试过更改脚本中的部分代码,但是我是初学者,还没有找到适当的替代方法。
def changeplan(*args, widget=None):
widget.get()
for i in self.treeplan.get_children():
self.treeplan.delete(i)
self.db_refreshplan(pforder, pfdate, pfmarker, pfstyle, pfsize, pffabric, pftype, pfcolor, pfcomment, pfdiff)
planfilters()
最后,我只想使脚本可执行文件!