我用python tkinter写A.py, 想出现一个窗口,代码是,
btn = Button(window, text="一维Rect函数", bg="orange", fg="red", command=rect_input_x0_a) ,其中的command是我自己写的叫rect_input_x0_a的函数,这个函数也是生成一个窗口。
这个button长这样,
点击"一维rect函数"这个Button, 生成的窗口长这样,
现在我想要输入一个x0,一个a,然后点击ok,希望能去调用B.py里面的一个函数rect_B,rect_B里面需要用到x0,a的值,然后画出一副图。
问题是rect_B没发调用x0,a 我不知道怎么办,有没有帮我解决一下?谢谢!