我使用“运行”按钮来运行我的整个代码。我还选择了整个代码并按下“运行此单元格”按钮并获得不同的结果。我正在使用“spyder”来编写我的代码。为什么会这样?
答案 0 :(得分:6)
@Fairy," cell"在spyder中使用特殊注释定义
# %% Cell defined here
你在用这个吗?
<强>更新强>
@Fairy,您需要使用单元格语法:
# %% Cell 1
a = 1 # Start of Cell 1
b = 2
print(a*b) # End of Cell 1
# %% Cell 2
c = 1.0 # Start of Cell 2
d = 2
print(a/b) # End of Cell 1
现在您可以运行由特殊注释
分隔的单元格