我可以在 Spyder 中逐步调试模块吗?
can I debug modules step by step in Spyder?
调试仅在主脚本中逐步进行。我能否以某种方式查看导入模块的功能发生了什么,而无需在我的主脚本中移动它们的内容?
例如,我想看看 a,b&c 变量里面有什么。
module.py:
def a_b():
a=1
b=2
c=a+b
return c
我的主要脚本:
from module import a_b
x=2
y=3
z=x*y
print (z)
print (a_b())
单击进入函数 (CTRL+F11)
调试仅在主脚本中逐步进行。我能否以某种方式查看导入模块的功能发生了什么,而无需在我的主脚本中移动它们的内容?
例如,我想看看 a,b&c 变量里面有什么。
module.py:
def a_b():
a=1
b=2
c=a+b
return c
我的主要脚本:
from module import a_b
x=2
y=3
z=x*y
print (z)
print (a_b())
单击进入函数 (CTRL+F11)