Python更新源代码wrt函数的输出

时间:2016-10-14 13:41:44

标签: python input output equation

例如,我的第一个模块是

from sympy import *
x,y=symbols('x y')

def A():
    equation=2*x+y
    return equation

print(A())

输出

2*x + y

我的第二个模块是

def B(x,y):
    equation=2*x + y
    return equation

我必须每次从终端复制第一个模块的输出到第二个模块的输出。有没有办法将此输出自动传递给B(x,y)的源代码?

感谢您的关注

0 个答案:

没有答案