如果我从用户定义函数中的模块获得此数据:
#gardenB
def moduleB():
(function inside here)
和另一个模块:
boxplot
如何仅使用来自gardenA中的moduleA的数据a来再次在gardenB中的moduleB中使用? 我知道我们需要首先在gardenB中导入gardenA,然后如何获取数据?
是gardenA.moduleA.a吗?
答案 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()
我想现在你更清楚了。