我尝试用变量名定义一个函数。
从数据库中检索名称。对于每个名称,我想定义一个按钮并进行单独处理:
title=['BNL','CE']
for i in range(0,len(title)):
panelvpu.add(Button(title[i]))
for i in range(0,len(title)):
eval('def onButtonClick'+title[i]+'(self, event):')
eval(' Window.alert("Yes")')
按钮定义没问题,但是在定义的函数中处理事件会产生错误
im1 SyntaxError: at index 4 in "def onMenu1Item1(self):
Window.alert("Item 1 selected")": expected ';', got 'onMenu1Item1'
反馈后我将其更改为
title=['BNL','CE']
for t in title : panelvpu.add(Button(t))
for t in title:
def_code = "print t"
exec(def_code)
只是为了感受;在python下这很好用。 但我使用睡衣,最后一段代码确实引发了错误陈述
im1 TypeError: iter is undefined
看来睡衣还不支持eval()和exec()。
理查德
答案 0 :(得分:9)
这里有很多问题:
1)eval
用于评估表达式,而不是执行语句。
2)exec
需要在一个exec
中使用整个函数,而不是将其拆分为单独的行。
3)根据您想要在身体中拥有的内容,有更简单的方法来创建功能。告诉我们你真正想做的事情。
4)你的循环更加简单:for t in title: blah blah t
。