在变量中按名称调用模块中的函数

时间:2014-08-15 12:44:39

标签: python function module

我想根据变量调用dict中的不同部分。

import fruitList

fruit = 'Banana'

if fruitList.fruit['Color'] == "Yellow":
 print "True"
else:
 print "False"

但这不起作用,AttributeError:'module'对象没有属性'fruit'

我知道我可以做到:

if fruit == "Banana":
 var = fruitList.Banana

但这就是我试图摆脱的东西,因为它为我的目的而变得静止。

0 个答案:

没有答案