如何在用户定义的函数中调用其他模块中的其他数据

时间:2017-11-19 03:25:19

标签: python python-3.x

如果我从用户定义函数中的模块获得此数据:

#gardenB
def moduleB():
    (function inside here)

和另一个模块:

boxplot

如何仅使用来自gardenA中的moduleA的数据a来再次在gardenB中的moduleB中使用? 我知道我们需要首先在gardenB中导入gardenA,然后如何获取数据?

是gardenA.moduleA.a吗?

1 个答案:

答案 0 :(得分:1)

#moduleA

a = 4
b = 5

def moduleA_fun(a, b):
      return a+b


#moduleB
import moduleA

def moduleB_fun()
    print(moduleA.a) #--->4
    print(moduleA.b) #---->5
#call above function
moduleB_fun()

我想现在你更清楚了。